LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/os/Process.h
2019-07-01 14:33:21 +02:00

21 lines
362 B
C++

#pragma once
#include <string>
namespace il2cpp
{
namespace os
{
struct ProcessHandle;
class Process
{
public:
static int GetCurrentProcessId();
static ProcessHandle* GetProcess(int processId);
static void FreeProcess(ProcessHandle* handle);
static std::string GetProcessName(ProcessHandle* handle);
};
}
}