mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
Added SYSTEM_TIME_INFORMATION
svn path=/trunk/; revision=1082
This commit is contained in:
parent
bc30557a61
commit
bd02ee978f
1 changed files with 10 additions and 4 deletions
|
@ -133,7 +133,7 @@ typedef struct _LPCMESSAGE
|
||||||
#define SystemInformation0 0
|
#define SystemInformation0 0
|
||||||
#define SystemInformation1 1
|
#define SystemInformation1 1
|
||||||
#define SystemPerformanceInformation 2
|
#define SystemPerformanceInformation 2
|
||||||
#define SystemInformation3 3
|
#define SystemTimeInformation 3
|
||||||
#define SystemProcessInformation 5
|
#define SystemProcessInformation 5
|
||||||
#define SystemGlobalFlagInformation 9
|
#define SystemGlobalFlagInformation 9
|
||||||
#define SystemDriverInformation 11
|
#define SystemDriverInformation 11
|
||||||
|
@ -362,15 +362,21 @@ typedef struct _SYSTEM_PROCESS_INFORMATION
|
||||||
} SYSTEM_PROCESS_INFORMATION, * PSYSTEM_PROCESS_INFORMATION;
|
} SYSTEM_PROCESS_INFORMATION, * PSYSTEM_PROCESS_INFORMATION;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
typedef struct _SYSTEM_TIME_INFO
|
||||||
|
{
|
||||||
|
LARGE_INTEGER BootTime;
|
||||||
|
LARGE_INTEGER SystemTime;
|
||||||
|
LARGE_INTEGER TimeZoneBias;
|
||||||
|
ULONG TimeZoneId;
|
||||||
|
ULONG Unknown;
|
||||||
|
} SYSTEM_TIME_INFO, *PSYSTEM_TIME_INFO;
|
||||||
|
|
||||||
typedef
|
typedef struct _SYSTEM_GLOBAL_FLAGS_INFO
|
||||||
struct _SYSTEM_GLOBAL_FLAGS_INFO
|
|
||||||
{
|
{
|
||||||
DWORD GlobalFlags;
|
DWORD GlobalFlags;
|
||||||
|
|
||||||
} SYSTEM_GLOBAL_FLAGS_INFO, * PSYSTEM_GLOBAL_FLAGS_INFO;
|
} SYSTEM_GLOBAL_FLAGS_INFO, * PSYSTEM_GLOBAL_FLAGS_INFO;
|
||||||
|
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
#pragma pack(4)
|
#pragma pack(4)
|
||||||
typedef struct _SYSTEM_DRIVER_INFO
|
typedef struct _SYSTEM_DRIVER_INFO
|
||||||
|
|
Loading…
Reference in a new issue