1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| #pragma once
|
| #include <stdint.h>
| #include "il2cpp-config.h"
|
| struct Il2CppString;
| struct Il2CppReflectionMethod;
|
| namespace il2cpp
| {
| namespace icalls
| {
| namespace mscorlib
| {
| namespace System
| {
| namespace Diagnostics
| {
| class LIBIL2CPP_CODEGEN_API StackFrame
| {
| public:
| static bool get_frame_info(
| int32_t skip,
| bool needFileInfo,
| Il2CppReflectionMethod ** method,
| int32_t* iloffset,
| int32_t* native_offset,
| Il2CppString** file,
| int32_t* line,
| int32_t* column);
| };
| } /* namespace Diagnostics */
| } /* namespace System */
| } /* namespace mscorlib */
| } /* namespace icalls */
| } /* namespace il2cpp */
|
|