123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- #pragma once
- #include <stdint.h>
- #include <stddef.h>
- struct Il2CppClass;
- struct Il2CppType;
- struct EventInfo;
- struct MethodInfo;
- struct FieldInfo;
- struct PropertyInfo;
- struct Il2CppAssembly;
- struct Il2CppArray;
- struct Il2CppDelegate;
- struct Il2CppDomain;
- struct Il2CppImage;
- struct Il2CppException;
- struct Il2CppProfiler;
- struct Il2CppObject;
- struct Il2CppReflectionMethod;
- struct Il2CppReflectionType;
- struct Il2CppString;
- struct Il2CppThread;
- struct Il2CppAsyncResult;
- enum Il2CppProfileFlags
- {
- IL2CPP_PROFILE_NONE = 0,
- IL2CPP_PROFILE_APPDOMAIN_EVENTS = 1 << 0,
- IL2CPP_PROFILE_ASSEMBLY_EVENTS = 1 << 1,
- IL2CPP_PROFILE_MODULE_EVENTS = 1 << 2,
- IL2CPP_PROFILE_CLASS_EVENTS = 1 << 3,
- IL2CPP_PROFILE_JIT_COMPILATION = 1 << 4,
- IL2CPP_PROFILE_INLINING = 1 << 5,
- IL2CPP_PROFILE_EXCEPTIONS = 1 << 6,
- IL2CPP_PROFILE_ALLOCATIONS = 1 << 7,
- IL2CPP_PROFILE_GC = 1 << 8,
- IL2CPP_PROFILE_THREADS = 1 << 9,
- IL2CPP_PROFILE_REMOTING = 1 << 10,
- IL2CPP_PROFILE_TRANSITIONS = 1 << 11,
- IL2CPP_PROFILE_ENTER_LEAVE = 1 << 12,
- IL2CPP_PROFILE_COVERAGE = 1 << 13,
- IL2CPP_PROFILE_INS_COVERAGE = 1 << 14,
- IL2CPP_PROFILE_STATISTICAL = 1 << 15,
- IL2CPP_PROFILE_METHOD_EVENTS = 1 << 16,
- IL2CPP_PROFILE_MONITOR_EVENTS = 1 << 17,
- IL2CPP_PROFILE_IOMAP_EVENTS = 1 << 18, /* this should likely be removed, too */
- IL2CPP_PROFILE_GC_MOVES = 1 << 19,
- IL2CPP_PROFILE_FILEIO = 1 << 20
- };
- enum Il2CppProfileFileIOKind
- {
- IL2CPP_PROFILE_FILEIO_WRITE = 0,
- IL2CPP_PROFILE_FILEIO_READ
- };
- enum Il2CppGCEvent
- {
- IL2CPP_GC_EVENT_START,
- IL2CPP_GC_EVENT_MARK_START,
- IL2CPP_GC_EVENT_MARK_END,
- IL2CPP_GC_EVENT_RECLAIM_START,
- IL2CPP_GC_EVENT_RECLAIM_END,
- IL2CPP_GC_EVENT_END,
- IL2CPP_GC_EVENT_PRE_STOP_WORLD,
- IL2CPP_GC_EVENT_POST_STOP_WORLD,
- IL2CPP_GC_EVENT_PRE_START_WORLD,
- IL2CPP_GC_EVENT_POST_START_WORLD
- };
- enum Il2CppStat
- {
- IL2CPP_STAT_NEW_OBJECT_COUNT,
- IL2CPP_STAT_INITIALIZED_CLASS_COUNT,
- //IL2CPP_STAT_GENERIC_VTABLE_COUNT,
- //IL2CPP_STAT_USED_CLASS_COUNT,
- IL2CPP_STAT_METHOD_COUNT,
- //IL2CPP_STAT_CLASS_VTABLE_SIZE,
- IL2CPP_STAT_CLASS_STATIC_DATA_SIZE,
- IL2CPP_STAT_GENERIC_INSTANCE_COUNT,
- IL2CPP_STAT_GENERIC_CLASS_COUNT,
- IL2CPP_STAT_INFLATED_METHOD_COUNT,
- IL2CPP_STAT_INFLATED_TYPE_COUNT,
- //IL2CPP_STAT_DELEGATE_CREATIONS,
- //IL2CPP_STAT_MINOR_GC_COUNT,
- //IL2CPP_STAT_MAJOR_GC_COUNT,
- //IL2CPP_STAT_MINOR_GC_TIME_USECS,
- //IL2CPP_STAT_MAJOR_GC_TIME_USECS
- };
- enum Il2CppRuntimeUnhandledExceptionPolicy
- {
- IL2CPP_UNHANDLED_POLICY_LEGACY,
- IL2CPP_UNHANDLED_POLICY_CURRENT
- };
- struct Il2CppStackFrameInfo
- {
- const MethodInfo *method;
- };
- typedef struct
- {
- void* (*malloc_func)(size_t size);
- void* (*aligned_malloc_func)(size_t size, size_t alignment);
- void (*free_func)(void *ptr);
- void (*aligned_free_func)(void *ptr);
- void* (*calloc_func)(size_t nmemb, size_t size);
- void* (*realloc_func)(void *ptr, size_t size);
- void* (*aligned_realloc_func)(void *ptr, size_t size, size_t alignment);
- } Il2CppMemoryCallbacks;
- #if !__SNC__ // SNC doesn't like the following define: "warning 1576: predefined meaning of __has_feature discarded"
- #ifndef __has_feature // clang specific __has_feature check
- #define __has_feature(x) 0 // Compatibility with non-clang compilers.
- #endif
- #endif
- #if _MSC_VER
- typedef wchar_t Il2CppChar;
- #elif __has_feature(cxx_unicode_literals)
- typedef char16_t Il2CppChar;
- #else
- typedef uint16_t Il2CppChar;
- #endif
- #if _MSC_VER
- typedef wchar_t Il2CppNativeChar;
- #define IL2CPP_NATIVE_STRING(str) L##str
- #else
- typedef char Il2CppNativeChar;
- #define IL2CPP_NATIVE_STRING(str) str
- #endif
- typedef void (*il2cpp_register_object_callback)(Il2CppObject** arr, int size, void* userdata);
- typedef void (*il2cpp_WorldChangedCallback)();
- typedef void (*Il2CppFrameWalkFunc) (const Il2CppStackFrameInfo *info, void *user_data);
- typedef void (*Il2CppProfileFunc) (Il2CppProfiler* prof);
- typedef void (*Il2CppProfileMethodFunc) (Il2CppProfiler* prof, const MethodInfo *method);
- typedef void (*Il2CppProfileAllocFunc) (Il2CppProfiler* prof, Il2CppObject *obj, Il2CppClass *klass);
- typedef void (*Il2CppProfileGCFunc) (Il2CppProfiler* prof, Il2CppGCEvent event, int generation);
- typedef void (*Il2CppProfileGCResizeFunc) (Il2CppProfiler* prof, int64_t new_size);
- typedef void (*Il2CppProfileFileIOFunc) (Il2CppProfiler* prof, Il2CppProfileFileIOKind kind, int count);
- typedef const Il2CppNativeChar* (*Il2CppSetFindPlugInCallback)(const Il2CppNativeChar*);
- typedef void (*Il2CppLogCallback)(const char*);
- struct Il2CppManagedMemorySnapshot;
- typedef void (*Il2CppMethodPointer)();
- typedef uintptr_t il2cpp_array_size_t;
- #define ARRAY_LENGTH_AS_INT32(a) ((int32_t)a)
|