Added some Job related info and little cleanup.
[reactos.git] / reactos / include / ddk / zwtypes.h
index 903fd55..5229ba7 100644 (file)
@@ -1,6 +1,21 @@
 #ifndef __INCLUDE_DDK_ZWTYPES_H
 #define __INCLUDE_DDK_ZWTYPES_H
 
+typedef enum _DEBUG_CONTROL_CODE
+{
+  DebugGetTraceInformation = 1,
+  DebugSetInternalBreakpoint,
+  DebugSetSpecialCalls,
+  DebugClearSpecialCalls,
+  DebugQuerySpecialCalls,
+  DebugDbgBreakPoint
+} DEBUG_CONTROL_CODE;
+
+typedef enum _KPROFILE_SOURCE
+{
+  ProfileTime
+} KPROFILE_SOURCE;
+
 #define NtCurrentProcess() ( (HANDLE) 0xFFFFFFFF )
 #define NtCurrentThread() ( (HANDLE) 0xFFFFFFFE )
 
@@ -28,6 +43,20 @@ extern ULONG IMPORTED NtBuildNumber;
 #define FILE_OVERWRITE_IF               0x0005
 #define FILE_MAXIMUM_DISPOSITION        0x0005
 
+// job query / set information class
+
+typedef enum _JOBOBJECTINFOCLASS {               // Q S
+    JobObjectBasicAccountingInformation = 1,     // Y N
+    JobObjectBasicLimitInformation,              // Y Y
+    JobObjectBasicProcessIdList,                 // Y N
+    JobObjectBasicUIRestrictions,                // Y Y
+    JobObjectSecurityLimitInformation,           // Y Y
+    JobObjectEndOfJobTimeInformation,            // N Y
+    JobObjectAssociateCompletionPortInformation, // N Y
+    JobObjectBasicAndIoAccountingInformation,    // Y N
+    JobObjectExtendedLimitInformation,           // Y Y
+} JOBOBJECTINFOCLASS;
+
 //process query / set information class
 
 #define ProcessBasicInformation                        0
@@ -52,10 +81,17 @@ extern ULONG IMPORTED NtBuildNumber;
 #define ProcessWx86Information                 19
 #define ProcessHandleCount                     20
 #define ProcessAffinityMask                    21
-#define ProcessImageFileName                    22
-#define MaxProcessInfoClass                    23
+#define ProcessImageFileName                   22      // ???
+#define ProcessPriorityBoost                   22
+#define ProcessDeviceMap                       23
+#define ProcessSessionInformation              24
+#define ProcessForegroundInformation           25
+#define ProcessWow64Information                        26
+#define MaxProcessInfoClass                    26
 
-// thread query / set information class
+/*
+ * thread query / set information class
+ */
 #define ThreadBasicInformation                 0
 #define ThreadTimes                            1
 #define ThreadPriority                         2
@@ -71,7 +107,10 @@ extern ULONG IMPORTED NtBuildNumber;
 #define ThreadAmILastThread                    12
 #define ThreadIdealProcessor                   13
 #define ThreadPriorityBoost                    14
-#define MaxThreadInfoClass                     15
+#define ThreadSetTlsArrayAddress               15
+#define ThreadIsIoPending                      16
+#define ThreadHideFromDebugger                 17
+#define MaxThreadInfoClass                     17
 
 // object handle information
 
@@ -81,6 +120,28 @@ extern ULONG IMPORTED NtBuildNumber;
 #define ObjectAllInformation                   3
 #define ObjectDataInformation                  4
 
+// atom information
+
+typedef enum _ATOM_INFORMATION_CLASS
+{
+   AtomBasicInformation                = 0,
+   AtomTableInformation                = 1,
+} ATOM_INFORMATION_CLASS;
+
+typedef struct _ATOM_BASIC_INFORMATION
+{
+   USHORT UsageCount;
+   USHORT Flags;
+   USHORT NameLength;
+   WCHAR Name[1];
+} ATOM_BASIC_INFORMATION, *PATOM_BASIC_INFORMATION;
+
+typedef struct _ATOM_TABLE_INFORMATION
+{
+   ULONG NumberOfAtoms;
+   RTL_ATOM Atoms[1];
+} ATOM_TABLE_INFORMATION, *PATOM_TABLE_INFORMATION;
+
 
 // semaphore information
 
@@ -112,57 +173,150 @@ typedef struct _EVENT_BASIC_INFORMATION
 
 // system information
 // {Nt|Zw}{Query|Set}SystemInformation
+// (GN means Gary Nebbet in "NT/W2K Native API Reference")
 
 typedef
 enum _SYSTEM_INFORMATION_CLASS
 {
        SystemInformationClassMin               = 0,
        SystemBasicInformation                  = 0,    /* Q */
+       
        SystemProcessorInformation              = 1,    /* Q */
+       
        SystemPerformanceInformation            = 2,    /* Q */
+       
        SystemTimeOfDayInformation              = 3,    /* Q */
+       
        SystemPathInformation                   = 4,    /* Q (checked build only) */
+       SystemNotImplemented1                   = 4,    /* Q (GN) */
+       
        SystemProcessInformation                = 5,    /* Q */
+       SystemProcessesAndThreadsInformation    = 5,    /* Q (GN) */
+       
        SystemCallCountInfoInformation          = 6,    /* Q */
+       SystemCallCounts                        = 6,    /* Q (GN) */
+       
        SystemDeviceInformation                 = 7,    /* Q */
+// It conflicts with symbol in ntoskrnl/io/resource.c
+//     SystemConfigurationInformation          = 7,    /* Q (GN) */
+       
        SystemProcessorPerformanceInformation   = 8,    /* Q */
+       SystemProcessorTimes                    = 8,    /* Q (GN) */
+       
        SystemFlagsInformation                  = 9,    /* QS */
+       SystemGlobalFlag                        = 9,    /* QS (GN) */
+       
        SystemCallTimeInformation               = 10,
+       SystemNotImplemented2                   = 10,   /* (GN) */
+       
        SystemModuleInformation                 = 11,   /* Q */
+       
        SystemLocksInformation                  = 12,   /* Q */
+       SystemLockInformation                   = 12,   /* Q (GN) */
+       
        SystemStackTraceInformation             = 13,
+       SystemNotImplemented3                   = 13,   /* Q (GN) */
+       
        SystemPagedPoolInformation              = 14,
+       SystemNotImplemented4                   = 14,   /* Q (GN) */
+       
        SystemNonPagedPoolInformation           = 15,
+       SystemNotImplemented5                   = 15,   /* Q (GN) */
+       
        SystemHandleInformation                 = 16,   /* Q */
+       
        SystemObjectInformation                 = 17,   /* Q */
+       
        SystemPageFileInformation               = 18,   /* Q */
+       SystemPagefileInformation               = 18,   /* Q (GN) */
+       
        SystemVdmInstemulInformation            = 19,   /* Q */
+       SystemInstructionEmulationCounts        = 19,   /* Q (GN) */
+       
        SystemVdmBopInformation                 = 20,
+       SystemInvalidInfoClass1                 = 20,   /* (GN) */
+       
        SystemFileCacheInformation              = 21,   /* QS */
+       SystemCacheInformation                  = 21,   /* QS (GN) */
+       
        SystemPoolTagInformation                = 22,   /* Q (checked build only) */
+       
        SystemInterruptInformation              = 23,   /* Q */
+       SystemProcessorStatistics               = 23,   /* Q (GN) */
+       
        SystemDpcBehaviourInformation           = 24,   /* QS */
+       SystemDpcInformation                    = 24,   /* QS (GN) */
+       
        SystemFullMemoryInformation             = 25,
+       SystemNotImplemented6                   = 25,   /* (GN) */
+       
        SystemLoadGdiDriverInformation          = 26,   /* S (callable) */
+       SystemLoadImage                         = 26,   /* S (callable) (GN) */
+       
        SystemUnloadGdiDriverInformation        = 27,   /* S (callable) */
+       SystemUnloadImage                       = 27,   /* S (callable) (GN) */
+       
        SystemTimeAdjustmentInformation         = 28,   /* QS */
-       SystemSummryMemoryInformation           = 29,
+       SystemTimeAdjustment                    = 28,   /* QS (GN) */
+       
+       SystemSummaryMemoryInformation          = 29,
+       SystemNotImplemented7                   = 29,   /* (GN) */
+       
        SystemNextEventIdInformation            = 30,
+       SystemNotImplemented8                   = 30,   /* (GN) */
+       
        SystemEventIdsInformation               = 31,
+       SystemNotImplemented9                   = 31,   /* (GN) */
+       
        SystemCrashDumpInformation              = 32,   /* Q */
+       
        SystemExceptionInformation              = 33,   /* Q */
+       
        SystemCrashDumpStateInformation         = 34,   /* Q */
+       
        SystemKernelDebuggerInformation         = 35,   /* Q */
+       
        SystemContextSwitchInformation          = 36,   /* Q */
+       
        SystemRegistryQuotaInformation          = 37,   /* QS */
+       
        SystemExtendServiceTableInformation     = 38,   /* S */
-       SystemPrioritySeperation                = 39,   /* S */
+       SystemLoadAndCallImage                  = 38,   /* S (GN) */
+       
+       SystemPrioritySeparation                = 39,   /* S */
+       
        SystemPlugPlayBusInformation            = 40,
+       SystemNotImplemented10                  = 40,   /* Q (GN) */
+       
        SystemDockInformation                   = 41,
+       SystemNotImplemented11                  = 41,   /* Q (GN) */
+       
        SystemPowerInformation                  = 42,
+       SystemInvalidInfoClass2                 = 42,   /* (GN) */
+       
        SystemProcessorSpeedInformation         = 43,
+       SystemInvalidInfoClass3                 = 43,   /* (GN) */
+       
        SystemCurrentTimeZoneInformation        = 44,   /* QS */
+       SystemTimeZoneInformation               = 44,   /* QS (GN) */
+       
        SystemLookasideInformation              = 45,   /* Q */
+       
+       SystemSetTimeSlipEvent                  = 46,   /* S (GN) */
+       
+       SystemCreateSession                     = 47,   /* S (GN) */
+       
+       SystemDeleteSession                     = 48,   /* S (GN) */
+       
+       SystemInvalidInfoClass4                 = 49,   /* (GN) */
+       
+       SystemRangeStartInformation             = 50,   /* Q (GN) */
+       
+       SystemVerifierInformation               = 51,   /* QS (GN) */
+       
+       SystemAddVerifier                       = 52,   /* S (GN) */
+       
+       SystemSessionProcessesInformation       = 53,   /* Q (GN) */
        SystemInformationClassMax
 
 } SYSTEM_INFORMATION_CLASS;
@@ -369,6 +523,7 @@ struct _SYSTEM_DEVICE_INFORMATION
 } SYSTEM_DEVICE_INFORMATION, *PSYSTEM_DEVICE_INFORMATION;
 
 // SystemProcessorPerformanceInformation (8)
+// (one per processor in the system)
 typedef
 struct _SYSTEM_PROCESSORTIME_INFO
 {
@@ -430,16 +585,15 @@ struct _SYSTEM_FLAGS_INFORMATION
 typedef
 struct _SYSTEM_MODULE_ENTRY
 {
-       ULONG   Unused;
-       ULONG   Always0;
-       ULONG   ModuleBaseAddress;
-       ULONG   ModuleSize;
-       ULONG   Unknown;
-       ULONG   ModuleEntryIndex;
-       USHORT  ModuleNameLength; /* Length of module name not including the path, this field contains valid value only for NTOSKRNL module*/
-       USHORT  ModulePathLength; /* Length of 'directory path' part of modulename*/
-       CHAR    ModuleName [256];
-
+       ULONG   Unknown1;
+       ULONG   Unknown2;
+       PVOID   BaseAddress;
+       ULONG   Size;
+       ULONG   Flags;
+       ULONG   EntryIndex;
+       USHORT  NameLength; /* Length of module name not including the path, this field contains valid value only for NTOSKRNL module*/
+       USHORT  PathLength; /* Length of 'directory path' part of modulename*/
+       CHAR    Name [256];
 } SYSTEM_MODULE_ENTRY, * PSYSTEM_MODULE_ENTRY;
 
 typedef
@@ -447,7 +601,6 @@ struct _SYSTEM_MODULE_INFORMATION
 {
        ULONG                   Count;
        SYSTEM_MODULE_ENTRY     Module [1];
-       
 } SYSTEM_MODULE_INFORMATION, *PSYSTEM_MODULE_INFORMATION;
 
 // SystemLocksInformation (12)
@@ -505,12 +658,38 @@ struct _SYSTEM_HANDLE_INFORMATION
 } SYSTEM_HANDLE_INFORMATION, *PSYSTEM_HANDLE_INFORMATION;
 
 // SystemObjectInformation (17)
-// UNKNOWN
+typedef
+struct _SYSTEM_OBJECT_TYPE_INFORMATION
+{
+       ULONG           NextEntryOffset;
+       ULONG           ObjectCount;
+       ULONG           HandleCount;
+       ULONG           TypeNumber;
+       ULONG           InvalidAttributes;
+       GENERIC_MAPPING GenericMapping;
+       ACCESS_MASK     ValidAccessMask;
+       POOL_TYPE       PoolType;
+       UCHAR           Unknown;
+       UNICODE_STRING  Name;
+       
+} SYSTEM_OBJECT_TYPE_INFORMATION, *PSYSTEM_OBJECT_TYPE_INFORMATION;
+
 typedef
 struct _SYSTEM_OBJECT_INFORMATION
 {
-       DWORD   Unknown;
-       /* FIXME */
+       ULONG                   NextEntryOffset;
+       PVOID                   Object;
+       ULONG                   CreatorProcessId;
+       USHORT                  Unknown;
+       USHORT                  Flags;
+       ULONG                   PointerCount;
+       ULONG                   HandleCount;
+       ULONG                   PagedPoolUsage;
+       ULONG                   NonPagedPoolUsage;
+       ULONG                   ExclusiveProcessId;
+       PSECURITY_DESCRIPTOR    SecurityDescriptor;
+       UNICODE_STRING          Name;
+
 } SYSTEM_OBJECT_INFORMATION, *PSYSTEM_OBJECT_INFORMATION;
 
 // SystemPageFileInformation (18)
@@ -652,25 +831,22 @@ typedef struct _SYSTEM_GDI_DRIVER_INFORMATION
 } SYSTEM_GDI_DRIVER_INFORMATION, *PSYSTEM_GDI_DRIVER_INFORMATION;
 
 // SystemTimeAdjustmentInformation (28)
-// (what is the right one?)
-#if 0
 typedef
-struct _SYSTEM_TIME_ADJUSTMENT_INFO
+struct _SYSTEM_QUERY_TIME_ADJUSTMENT
 {
-       TIME    TimeAdjustment;
-       BOOL    TimeAdjustmentDisabled;
+       ULONG   TimeAdjustment;
+       ULONG   MaximumIncrement;
+       BOOLEAN TimeSynchronization;
+
+} SYSTEM_QUERY_TIME_ADJUSTMENT, *PSYSTEM_QUERY_TIME_ADJUSTMENT;
 
-} SYSTEM_TIME_ADJUSTMENT_INFO, *PSYSTEM_TIME_ADJUSTMENT_INFO;
-#else
 typedef
-struct _SYSTEM_TIME_ADJUSTMENT_INFO
+struct _SYSTEM_SET_TIME_ADJUSTMENT
 {
-       ULONG   KeTimeAdjustment;
-       ULONG   KeMaximumIncrement;
-       BOOLEAN KeTimeSynchronization;
+       ULONG   TimeAdjustment;
+       BOOLEAN TimeSynchronization;
        
 } SYSTEM_TIME_ADJUSTMENT_INFO, *PSYSTEM_TIME_ADJUSTMENT_INFO;
-#endif
 
 // SystemProcessorFaultCountInfo (33)
 typedef
@@ -730,6 +906,76 @@ struct _SYSTEM_TIME_ZONE_INFORMATION
 
 } SYSTEM_TIME_ZONE_INFORMATION, * PSYSTEM_TIME_ZONE_INFORMATION;
 
+// SystemLookasideInformation (45)
+typedef
+struct _SYSTEM_LOOKASIDE_INFORMATION
+{
+       USHORT          Depth;
+       USHORT          MaximumDepth;
+       ULONG           TotalAllocates;
+       ULONG           AllocatesMisses;
+       ULONG           TotalFrees;
+       ULONG           FreeMisses;
+       POOL_TYPE       Type;
+       ULONG           Tag;
+       ULONG           Size;
+       
+} SYSTEM_LOOKASIDE_INFORMATION, * PSYSTEM_LOOKASIDE_INFORMATION;
+
+// SystemSetTimeSlipEvent (46)
+typedef
+struct _SYSTEM_SET_TIME_SLIP_EVENT
+{
+       HANDLE  TimeSlipEvent; /* IN */
+
+} SYSTEM_SET_TIME_SLIP_EVENT, * PSYSTEM_SET_TIME_SLIP_EVENT;
+
+// SystemCreateSession (47)
+// (available only on TSE/NT5+)
+typedef
+struct _SYSTEM_CREATE_SESSION
+{
+       ULONG   SessionId; /* OUT */
+
+} SYSTEM_CREATE_SESSION, * PSYSTEM_CREATE_SESSION;
+
+// SystemDeleteSession (48)
+// (available only on TSE/NT5+)
+typedef
+struct _SYSTEM_DELETE_SESSION
+{
+       ULONG   SessionId; /* IN */
+
+} SYSTEM_DELETE_SESSION, * PSYSTEM_DELETE_SESSION;
+
+// (49)
+// UNKNOWN
+
+// SystemRangeStartInformation (50)
+typedef
+struct _SYSTEM_RANGE_START_INFORMATION
+{
+       PVOID   SystemRangeStart;
+
+} SYSTEM_RANGE_START_INFORMATION, * PSYSTEM_RANGE_START_INFORMATION;
+
+// SystemVerifierInformation (51)
+// UNKNOWN
+
+// SystemAddVerifier (52)
+// UNKNOWN
+
+// SystemSessionProcessesInformation (53)
+// (available only on TSE/NT5+)
+typedef
+struct _SYSTEM_SESSION_PROCESSES_INFORMATION
+{
+       ULONG   SessionId;
+       ULONG   BufferSize;
+       PVOID   Buffer; /* same format as in SystemProcessInformation */
+
+} SYSTEM_SESSION_PROCESSES_INFORMATION, * PSYSTEM_SESSION_PROCESSES_INFORMATION;
+
 // memory information
 
 #define MemoryBasicInformation                 0
@@ -776,12 +1022,7 @@ typedef enum SHUTDOWN_ACTION_TAG {
 #define SYMBOLIC_LINK_QUERY                    0x0001
 #define SYMBOLIC_LINK_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | 0x1)
 
-typedef struct _PROCESS_WS_WATCH_INFORMATION
-{
-       PVOID FaultingPc;
-       PVOID FaultingVa;
-} PROCESS_WS_WATCH_INFORMATION, *PPROCESS_WS_WATCH_INFORMATION;
-
+// Information class 0
 typedef struct _PROCESS_BASIC_INFORMATION
 {
        NTSTATUS ExitStatus;
@@ -792,6 +1033,7 @@ typedef struct _PROCESS_BASIC_INFORMATION
        ULONG InheritedFromUniqueProcessId;
 } PROCESS_BASIC_INFORMATION, *PPROCESS_BASIC_INFORMATION;
 
+// Information class 1
 typedef struct _QUOTA_LIMITS
 {
        ULONG PagedPoolLimit;
@@ -802,6 +1044,7 @@ typedef struct _QUOTA_LIMITS
        TIME TimeLimit;
 } QUOTA_LIMITS, *PQUOTA_LIMITS;
 
+// Information class 2
 typedef struct _IO_COUNTERS
 {
        ULONG ReadOperationCount;
@@ -812,7 +1055,7 @@ typedef struct _IO_COUNTERS
        LARGE_INTEGER OtherTransferCount;
 } IO_COUNTERS, *PIO_COUNTERS;
 
-
+// Information class 3
 typedef struct _VM_COUNTERS_
 {
        ULONG PeakVirtualSize;
@@ -828,7 +1071,23 @@ typedef struct _VM_COUNTERS_
        ULONG PeakPagefileUsage;
 } VM_COUNTERS, *PVM_COUNTERS;
 
+// Information class 4
+typedef struct _KERNEL_USER_TIMES
+{
+       TIME CreateTime;
+       TIME ExitTime;
+       TIME KernelTime;
+       TIME UserTime;
+} KERNEL_USER_TIMES, *PKERNEL_USER_TIMES;
+
+// Information class 9
+typedef struct _PROCESS_ACCESS_TOKEN
+{
+       HANDLE Token;
+       HANDLE Thread;
+} PROCESS_ACCESS_TOKEN, *PPROCESS_ACCESS_TOKEN;
 
+// Information class 14 
 typedef struct _POOLED_USAGE_AND_LIMITS_
 {
        ULONG PeakPagedPoolUsage;
@@ -842,21 +1101,39 @@ typedef struct _POOLED_USAGE_AND_LIMITS_
        ULONG PagefileLimit;
 } POOLED_USAGE_AND_LIMITS, *PPOOLED_USAGE_AND_LIMITS;
 
+// Information class 15
+typedef struct _PROCESS_WS_WATCH_INFORMATION
+{
+       PVOID FaultingPc;
+       PVOID FaultingVa;
+} PROCESS_WS_WATCH_INFORMATION, *PPROCESS_WS_WATCH_INFORMATION;
 
-typedef struct _PROCESS_ACCESS_TOKEN
+// Information class 18
+typedef struct _PROCESS_PRIORITY_CLASS
 {
-       HANDLE Token;
-       HANDLE Thread;
-} PROCESS_ACCESS_TOKEN, *PPROCESS_ACCESS_TOKEN;
+       BOOLEAN Foreground;
+       UCHAR   PriorityClass;
+} PROCESS_PRIORITY_CLASS, *PPROCESS_PRIORITY_CLASS;
 
-typedef struct _KERNEL_USER_TIMES
+// Information class 23
+typedef struct _PROCESS_DEVICEMAP_INFORMATION
 {
-       TIME CreateTime;
-       TIME ExitTime;
-       TIME KernelTime;
-       TIME UserTime;
-} KERNEL_USER_TIMES;
-typedef KERNEL_USER_TIMES *PKERNEL_USER_TIMES;
+       union {
+               struct {
+                       HANDLE DirectoryHandle;
+               } Set;
+               struct {
+                       ULONG DriveMap;
+                       UCHAR DriveType[32];
+               } Query;
+       };
+} PROCESS_DEVICEMAP_INFORMATION, *pPROCESS_DEVICEMAP_INFORMATION;
+
+// Information class 24
+typedef struct _PROCESS_SESSION_INFORMATION
+{
+       ULONG SessionId;
+} PROCESS_SESSION_INFORMATION, *PPROCESS_SESSION_INFORMATION;
 
 // thread information
 
@@ -864,11 +1141,12 @@ typedef KERNEL_USER_TIMES *PKERNEL_USER_TIMES;
 
 typedef struct _THREAD_BASIC_INFORMATION
 {
-       NTSTATUS ExitStatus;
-       PVOID TebBaseAddress;
-       KAFFINITY AffinityMask;
-       KPRIORITY BasePriority;
-       ULONG UniqueThreadId;
+  NTSTATUS  ExitStatus;
+  PVOID     TebBaseAddress;    // PNT_TIB (GN)
+  CLIENT_ID ClientId;
+  KAFFINITY AffinityMask;
+  KPRIORITY Priority;
+  KPRIORITY BasePriority;
 } THREAD_BASIC_INFORMATION, *PTHREAD_BASIC_INFORMATION;
 
 // object information
@@ -1014,6 +1292,42 @@ typedef struct _FILE_MODE_INFORMATION {
        ULONG Mode;
 } FILE_MODE_INFORMATION, *PFILE_MODE_INFORMATION;
 
+
+typedef struct _FILE_PIPE_INFORMATION {
+       ULONG ReadMode;
+       ULONG CompletionMode;
+} FILE_PIPE_INFORMATION, *PFILE_PIPE_INFORMATION;
+
+typedef struct _FILE_PIPE_LOCAL_INFORMATION {
+       ULONG NamedPipeType;
+       ULONG NamedPipeConfiguration;
+       ULONG MaximumInstances;
+       ULONG CurrentInstances;
+       ULONG InboundQuota;
+       ULONG ReadDataAvailable;
+       ULONG OutboundQuota;
+       ULONG WriteQuotaAvailable;
+       ULONG NamedPipeState;
+       ULONG NamedPipeEnd;
+} FILE_PIPE_LOCAL_INFORMATION, *PFILE_PIPE_LOCAL_INFORMATION;
+
+typedef struct _FILE_PIPE_REMOTE_INFORMATION {
+       LARGE_INTEGER CollectDataTime;
+       ULONG MaximumCollectionCount;
+} FILE_PIPE_REMOTE_INFORMATION, *PFILE_PIPE_REMOTE_INFORMATION;
+
+typedef struct _FILE_MAILSLOT_QUERY_INFORMATION {
+       ULONG MaxMessageSize;
+       ULONG Unknown; /* ?? */
+       ULONG NextSize;
+       ULONG MessageCount;
+       LARGE_INTEGER Timeout;
+} FILE_MAILSLOT_QUERY_INFORMATION, *PFILE_MAILSLOT_QUERY_INFORMATION;
+
+typedef struct _FILE_MAILSLOT_SET_INFORMATION {
+       LARGE_INTEGER Timeout;
+} FILE_MAILSLOT_SET_INFORMATION, *PFILE_MAILSLOT_SET_INFORMATION;
+
 typedef struct _FILE_COMPRESSION_INFORMATION {
        LARGE_INTEGER CompressedFileSize;
        USHORT CompressionFormat;
@@ -1035,6 +1349,7 @@ typedef struct _FILE_ALL_INFORMATION {
        FILE_NAME_INFORMATION NameInformation;
 } FILE_ALL_INFORMATION, *PFILE_ALL_INFORMATION;
 
+
 // file system information structures
 
 typedef struct _FILE_FS_DEVICE_INFORMATION {
@@ -1188,16 +1503,6 @@ typedef struct _FILE_NOTIFY_INFORMATION {
 */
 
 
-//FIXME: I am a win32 object
-typedef
-VOID
-(*PTIMERAPCROUTINE)(
-       LPVOID lpArgToCompletionRoutine,
-       DWORD dwTimerLowValue,
-       DWORD dwTimerHighValue
-       );
-
-
 // File System Control commands ( related to defragging )
 
 #define        FSCTL_READ_MFT_RECORD                   0x90068 // NTFS only
@@ -1243,6 +1548,17 @@ typedef struct _MOVEFILE_DESCRIPTOR
 //     SynchronizationTimer
 //} TIMER_TYPE;
 
+typedef struct _TIMER_BASIC_INFORMATION
+{
+  LARGE_INTEGER TimeRemaining;
+  BOOLEAN SignalState;
+} TIMER_BASIC_INFORMATION, *PTIMER_BASIC_INFORMATION;
+
+typedef enum _TIMER_INFORMATION_CLASS
+{
+  TimerBasicInformation
+} TIMER_INFORMATION_CLASS;
+
 typedef
 struct _LPC_PORT_BASIC_INFORMATION
 {
@@ -1263,4 +1579,34 @@ struct _LPC_PORT_BASIC_INFORMATION
 
 } LPC_PORT_BASIC_INFORMATION, * PLPC_PORT_BASIC_INFORMATION;
 
+typedef struct _SECTION_BASIC_INFORMATION
+{
+  PVOID BaseAddress;
+  ULONG Attributes;
+  LARGE_INTEGER Size;
+} SECTION_BASIC_INFORMATION, *PSECTION_BASIC_INFORMATION;
+
+typedef struct _SECTION_IMAGE_INFORMATION
+{
+  PVOID EntryPoint;
+  ULONG Unknown1;
+  ULONG StackReserve;
+  ULONG StackCommit;
+  ULONG Subsystem;
+  USHORT MinorSubsystemVersion;
+  USHORT MajorSubsystemVersion;
+  ULONG Unknown2;
+  ULONG Characteristics;
+  USHORT ImageNumber;
+  BOOLEAN Executable;
+  UCHAR Unknown3;
+  ULONG Unknown4[3];
+} SECTION_IMAGE_INFORMATION, *PSECTION_IMAGE_INFORMATION;
+
+typedef enum _SECTION_INFORMATION_CLASS 
+{
+  SectionBasicInformation,
+  SectionImageInformation,
+} SECTION_INFORMATION_CLASS;
+
 #endif