LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/os/c-api/Process-c-api.h

26 lines
472 B
C
Raw Normal View History

2019-07-01 14:33:21 +02:00
#pragma once
#if defined(__cplusplus)
typedef il2cpp::os::ProcessHandle UnityPalProcessHandle;
#else
typedef struct UnityPalProcessHandle UnityPalProcessHandle;
#endif
#if defined(__cplusplus)
extern "C"
{
#endif
int UnityPalGetCurrentProcessId();
UnityPalProcessHandle* UnityPalGetProcess(int processId);
void UnityPalFreeProcess(UnityPalProcessHandle* handle);
const char* UnityPalGetProcessName(UnityPalProcessHandle* handle);
#if defined(__cplusplus)
}
#endif