少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#pragma once
 
#include "il2cpp-object-internals.h"
 
namespace il2cpp
{
namespace icalls
{
namespace System
{
namespace Microsoft
{
namespace Win32
{
    class LIBIL2CPP_CODEGEN_API NativeMethods
    {
    public:
        static bool CloseProcess(intptr_t handle);
        static bool GetExitCodeProcess(intptr_t processHandle, int32_t* exitCode);
        static bool GetProcessTimes(intptr_t handle, int64_t* creation, int64_t* exit, int64_t* kernel, int64_t* user);
        static bool GetProcessWorkingSetSize(intptr_t handle, intptr_t* min, intptr_t* max);
        static bool SetPriorityClass(intptr_t handle, int32_t priorityClass);
        static bool SetProcessWorkingSetSize(intptr_t handle, intptr_t min, intptr_t max);
        static bool TerminateProcess(intptr_t processHandle, int32_t exitCode);
        static int32_t GetCurrentProcessId();
        static int32_t GetPriorityClass(intptr_t handle);
        static int32_t WaitForInputIdle(intptr_t handle, int32_t milliseconds);
        static intptr_t GetCurrentProcess();
    };
} // namespace Win32
} // namespace Microsoft
} // namespace System
} // namespace icalls
} // namespace il2cpp