少年修仙传客户端基础资源
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#pragma once
 
#include <stdint.h>
#include "il2cpp-config.h"
 
struct Il2CppString;
struct Il2CppArray;
 
namespace il2cpp
{
namespace icalls
{
namespace mscorlib
{
namespace System
{
    class LIBIL2CPP_CODEGEN_API Environment
    {
    public:
        static Il2CppString* internalGetGacPath();
        static int32_t get_ProcessorCount();
        static bool get_SocketSecurityEnabled();
        static void internalBroadcastSettingChange();
        static Il2CppString* GetOSVersionString();
        static Il2CppString* GetMachineConfigPath();
        static Il2CppArray* GetLogicalDrivesInternal();
        static Il2CppArray* GetEnvironmentVariableNames();
        static Il2CppArray* GetCommandLineArgs();
        static Il2CppString* internalGetHome();
        static Il2CppString*  get_NewLine();
        static Il2CppString* get_MachineName();
        static int32_t get_ExitCode();
        static bool get_HasShutdownStarted();
        static Il2CppString* get_EmbeddingHostName();
        static Il2CppString* get_UserName();
        static int get_Platform();
        static int32_t get_TickCount();
        static void Exit(int32_t exitCode);
        static Il2CppString* GetWindowsFolderPath(int32_t folder);
        static Il2CppString* internalGetEnvironmentVariable(Il2CppString *);
        static void set_ExitCode(int32_t value);
        static void InternalSetEnvironmentVariable(Il2CppString* variable, Il2CppString* value);
        static bool GetIs64BitOperatingSystem();
        static int32_t GetPageSize();
        static Il2CppString* GetNewLine();
        static Il2CppString* internalGetEnvironmentVariable_native(intptr_t variable);
        static Il2CppString* get_bundled_machine_config();
#if IL2CPP_TINY
        static Il2CppString* GetStackTrace_internal();
        static void FailFast_internal(Il2CppString* message);
#endif
    };
} /* namespace System */
} /* namespace mscorlib */
} /* namespace icalls */
} /* namespace il2cpp */