1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| #pragma once
|
| #include <stdint.h>
| #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);
| static int64_t Times(ProcessHandle* handle, int32_t type);
| static int64_t StartTime(ProcessHandle* handle);
| static int64_t GetProcessData(int32_t pid, int32_t data_type, int32_t* error);
| };
| }
| }
|
|