LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/os/NativeMethods.h

23 lines
419 B
C
Raw Normal View History

2019-07-01 14:33:21 +02:00
#pragma once
#include <stdint.h>
#include "os/Process.h"
#include <vector>
#include <string>
namespace il2cpp
{
namespace os
{
class NativeMethods
{
public:
static bool CloseProcess(ProcessHandle* handle);
static bool GetExitCodeProcess(ProcessHandle* handle, int32_t* exitCode);
static int32_t GetCurrentProcessId();
static ProcessHandle* GetCurrentProcess();
};
}
}