mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
FLG macros added.
svn path=/trunk/; revision=1516
This commit is contained in:
parent
52f51dc4b9
commit
a3a116651b
1 changed files with 42 additions and 0 deletions
|
@ -390,6 +390,39 @@ struct _SYSTEM_FLAGS_INFORMATION
|
|||
|
||||
} SYSTEM_FLAGS_INFORMATION, * PSYSTEM_FLAGS_INFORMATION;
|
||||
|
||||
#define FLG_STOP_ON_EXCEPTION 0x00000001
|
||||
#define FLG_SHOW_LDR_SNAPS 0x00000002
|
||||
#define FLG_DEBUG_INITIAL_COMMAND 0x00000004
|
||||
#define FLG_STOP_ON_HANG_GUI 0x00000008
|
||||
#define FLG_HEAP_ENABLE_TAIL_CHECK 0x00000010
|
||||
#define FLG_HEAP_ENABLE_FREE_CHECK 0x00000020
|
||||
#define FLG_HEAP_VALIDATE_PARAMETERS 0x00000040
|
||||
#define FLG_HEAP_VALIDATE_ALL 0x00000080
|
||||
#define FLG_POOL_ENABLE_TAIL_CHECK 0x00000100
|
||||
#define FLG_POOL_ENABLE_FREE_CHECK 0x00000200
|
||||
#define FLG_POOL_ENABLE_TAGGING 0x00000400
|
||||
#define FLG_HEAP_ENABLE_TAGGING 0x00000800
|
||||
#define FLG_USER_STACK_TRACE_DB 0x00001000
|
||||
#define FLG_KERNEL_STACK_TRACE_DB 0x00002000
|
||||
#define FLG_MAINTAIN_OBJECT_TYPELIST 0x00004000
|
||||
#define FLG_HEAP_ENABLE_TAG_BY_DLL 0x00008000
|
||||
#define FLG_IGNORE_DEBUG_PRIV 0x00010000
|
||||
#define FLG_ENABLE_CSRDEBUG 0x00020000
|
||||
#define FLG_ENABLE_KDEBUG_SYMBOL_LOAD 0x00040000
|
||||
#define FLG_DISABLE_PAGE_KERNEL_STACKS 0x00080000
|
||||
#define FLG_HEAP_ENABLE_CALL_TRACING 0x00100000
|
||||
#define FLG_HEAP_DISABLE_COALESCING 0x00200000
|
||||
#define FLG_ENABLE_CLOSE_EXCEPTION 0x00400000
|
||||
#define FLG_ENABLE_EXCEPTION_LOGGING 0x00800000
|
||||
#define FLG_UNKNOWN_01000000 0x01000000
|
||||
#define FLG_UNKNOWN_02000000 0x02000000
|
||||
#define FLG_UNKNOWN_04000000 0x04000000
|
||||
#define FLG_ENABLE_DBGPRINT_BUFFERING 0x08000000
|
||||
#define FLG_UNKNOWN_10000000 0x10000000
|
||||
#define FLG_UNKNOWN_20000000 0x20000000
|
||||
#define FLG_UNKNOWN_40000000 0x40000000
|
||||
#define FLG_UNKNOWN_80000000 0x80000000
|
||||
|
||||
// SystemCallTimeInformation (10)
|
||||
// UNKNOWN
|
||||
|
||||
|
@ -683,7 +716,16 @@ struct _SYSTEM_DRIVER_LOAD
|
|||
|
||||
} SYSTEM_DRIVER_LOAD, *PSYSTEM_DRIVER_LOAD;
|
||||
|
||||
// SystemTimeZoneInformation (44)
|
||||
// typedef
|
||||
struct _SYSTEM_TIME_ZONE_INFORMATION
|
||||
{
|
||||
LONG Bias;
|
||||
WCHAR StandardName [32];
|
||||
SYSTEMTIME StandardDate;
|
||||
LONG StandardBias;
|
||||
|
||||
} SYSTEM_TIME_ZONE_INFORMATION, * PSYSTEM_TIME_ZONE_INFORMATION;
|
||||
|
||||
// memory information
|
||||
|
||||
|
|
Loading…
Reference in a new issue