mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 18:03:44 +00:00
[PSDK] Add missing DYNAMIC_TIME_ZONE_INFORMATION and QueryInformationJobObject.
svn path=/trunk/; revision=67922
This commit is contained in:
parent
71939f691e
commit
d869cbf31d
1 changed files with 21 additions and 0 deletions
|
@ -1056,6 +1056,18 @@ typedef struct _SYSTEM_POWER_STATUS {
|
|||
DWORD BatteryFullLifeTime;
|
||||
} SYSTEM_POWER_STATUS,*LPSYSTEM_POWER_STATUS;
|
||||
|
||||
typedef struct _TIME_DYNAMIC_ZONE_INFORMATION {
|
||||
LONG Bias;
|
||||
WCHAR StandardName[32];
|
||||
SYSTEMTIME StandardDate;
|
||||
LONG StandardBias;
|
||||
WCHAR DaylightName[32];
|
||||
SYSTEMTIME DaylightDate;
|
||||
LONG DaylightBias;
|
||||
WCHAR TimeZoneKeyName[128];
|
||||
BOOLEAN DynamicDaylightTimeDisabled;
|
||||
} DYNAMIC_TIME_ZONE_INFORMATION, *PDYNAMIC_TIME_ZONE_INFORMATION;
|
||||
|
||||
typedef struct _TIME_ZONE_INFORMATION {
|
||||
LONG Bias;
|
||||
WCHAR StandardName[32];
|
||||
|
@ -2679,6 +2691,15 @@ BOOL WINAPI QueueUserWorkItem(LPTHREAD_START_ROUTINE,PVOID,ULONG);
|
|||
#endif
|
||||
void WINAPI RaiseException(DWORD,DWORD,DWORD,const ULONG_PTR*);
|
||||
|
||||
BOOL
|
||||
WINAPI
|
||||
QueryInformationJobObject(
|
||||
_In_opt_ HANDLE hJob,
|
||||
_In_ JOBOBJECTINFOCLASS JobObjectInformationClass,
|
||||
_Out_writes_bytes_to_(cbJobObjectInformationLength, *lpReturnLength) LPVOID lpJobObjectInformation,
|
||||
_In_ DWORD cbJobObjectInformationLength,
|
||||
_Out_opt_ LPDWORD lpReturnLength);
|
||||
|
||||
BOOL
|
||||
WINAPI
|
||||
ReadDirectoryChangesW(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue