2005-05-08 17:44:37 +00:00
|
|
|
#ifndef _WINNT_H
|
|
|
|
#define _WINNT_H
|
|
|
|
|
2009-01-18 06:25:43 +00:00
|
|
|
#if !defined(__ROS_LONG64__)
|
|
|
|
#ifdef __WINESRC__
|
|
|
|
#define __ROS_LONG64__
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2008-07-27 08:18:07 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#include <msvctarget.h>
|
2005-05-08 17:44:37 +00:00
|
|
|
#endif
|
2008-07-27 08:18:07 +00:00
|
|
|
|
2010-11-23 11:30:17 +00:00
|
|
|
#ifndef __ANONYMOUS_DEFINED
|
|
|
|
#define __ANONYMOUS_DEFINED
|
|
|
|
#ifndef NONAMELESSUNION
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define _ANONYMOUS_UNION __extension__
|
|
|
|
#define _ANONYMOUS_STRUCT __extension__
|
|
|
|
#elif defined(__WATCOMC__) || defined(_MSC_VER)
|
|
|
|
#define _ANONYMOUS_UNION
|
|
|
|
#define _ANONYMOUS_STRUCT
|
|
|
|
#endif /* __GNUC__/__WATCOMC__ */
|
|
|
|
#endif /* NONAMELESSUNION */
|
|
|
|
#ifndef _ANONYMOUS_UNION
|
|
|
|
#define _ANONYMOUS_UNION
|
|
|
|
#define _UNION_NAME(x) x
|
|
|
|
#define DUMMYUNIONNAME u
|
|
|
|
#define DUMMYUNIONNAME1 u1
|
|
|
|
#define DUMMYUNIONNAME2 u2
|
|
|
|
#define DUMMYUNIONNAME3 u3
|
|
|
|
#define DUMMYUNIONNAME4 u4
|
|
|
|
#define DUMMYUNIONNAME5 u5
|
|
|
|
#define DUMMYUNIONNAME6 u6
|
|
|
|
#define DUMMYUNIONNAME7 u7
|
|
|
|
#define DUMMYUNIONNAME8 u8
|
|
|
|
#else
|
|
|
|
#define _UNION_NAME(x)
|
|
|
|
#define DUMMYUNIONNAME
|
|
|
|
#define DUMMYUNIONNAME1
|
|
|
|
#define DUMMYUNIONNAME2
|
|
|
|
#define DUMMYUNIONNAME3
|
|
|
|
#define DUMMYUNIONNAME4
|
|
|
|
#define DUMMYUNIONNAME5
|
|
|
|
#define DUMMYUNIONNAME6
|
|
|
|
#define DUMMYUNIONNAME7
|
|
|
|
#define DUMMYUNIONNAME8
|
|
|
|
#endif
|
|
|
|
#ifndef _ANONYMOUS_STRUCT
|
|
|
|
#define _ANONYMOUS_STRUCT
|
|
|
|
#define _STRUCT_NAME(x) x
|
|
|
|
#define DUMMYSTRUCTNAME s
|
|
|
|
#define DUMMYSTRUCTNAME1 s1
|
|
|
|
#define DUMMYSTRUCTNAME2 s2
|
|
|
|
#define DUMMYSTRUCTNAME3 s3
|
|
|
|
#define DUMMYSTRUCTNAME4 s4
|
|
|
|
#define DUMMYSTRUCTNAME5 s5
|
|
|
|
#else
|
|
|
|
#define _STRUCT_NAME(x)
|
|
|
|
#define DUMMYSTRUCTNAME
|
|
|
|
#define DUMMYSTRUCTNAME1
|
|
|
|
#define DUMMYSTRUCTNAME2
|
|
|
|
#define DUMMYSTRUCTNAME3
|
|
|
|
#define DUMMYSTRUCTNAME4
|
|
|
|
#define DUMMYSTRUCTNAME5
|
|
|
|
#endif
|
|
|
|
#endif /* __ANONYMOUS_DEFINED */
|
|
|
|
|
|
|
|
|
2007-04-20 02:30:53 +00:00
|
|
|
#ifndef DECLSPEC_ALIGN
|
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
|
|
|
|
# define DECLSPEC_ALIGN(x) __declspec(align(x))
|
|
|
|
# elif defined(__GNUC__)
|
|
|
|
# define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
|
|
|
|
# else
|
|
|
|
# define DECLSPEC_ALIGN(x)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
# define DECLSPEC_HIDDEN
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2008-12-13 21:28:05 +00:00
|
|
|
#include <excpt.h>
|
2007-04-20 02:30:53 +00:00
|
|
|
#include <basetsd.h>
|
|
|
|
#include <guiddef.h>
|
|
|
|
|
2005-07-27 16:55:40 +00:00
|
|
|
#include <ctype.h>
|
2007-08-19 14:04:20 +00:00
|
|
|
#undef __need_wchar_t
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#include <winerror.h>
|
2007-04-20 02:30:53 +00:00
|
|
|
#include <stddef.h>
|
2006-03-16 02:31:11 +00:00
|
|
|
#include <sdkddkver.h>
|
2005-05-08 17:44:37 +00:00
|
|
|
|
|
|
|
#ifndef RC_INVOKED
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* FIXME: add more architectures. Is there a way to specify this in GCC? */
|
2009-10-14 20:09:13 +00:00
|
|
|
#if defined(_M_AMD64)
|
|
|
|
#undef UNALIGNED
|
|
|
|
#define UNALIGNED __unaligned
|
2005-05-08 17:44:37 +00:00
|
|
|
#else
|
|
|
|
#define UNALIGNED
|
|
|
|
#endif
|
|
|
|
|
2010-04-19 14:03:42 +00:00
|
|
|
#ifndef DECLSPEC_NOVTABLE
|
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1100) && defined(__cplusplus)
|
|
|
|
# define DECLSPEC_NOVTABLE __declspec(novtable)
|
|
|
|
# else
|
|
|
|
# define DECLSPEC_NOVTABLE
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2005-11-22 04:57:45 +00:00
|
|
|
#ifndef DECLSPEC_ADDRSAFE
|
|
|
|
#if (_MSC_VER >= 1200) && (defined(_M_ALPHA) || defined(_M_AXP64))
|
|
|
|
#define DECLSPEC_ADDRSAFE __declspec(address_safe)
|
|
|
|
#else
|
|
|
|
#define DECLSPEC_ADDRSAFE
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2009-06-27 19:06:00 +00:00
|
|
|
/*#ifdef _WINE*/
|
2008-11-06 17:35:54 +00:00
|
|
|
#if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)))
|
|
|
|
#define __WINE_ALLOC_SIZE(x) __attribute__((__alloc_size__(x)))
|
|
|
|
#else
|
|
|
|
#define __WINE_ALLOC_SIZE(x)
|
|
|
|
#endif
|
2009-06-27 19:06:00 +00:00
|
|
|
/*#endif*/
|
2008-11-06 17:35:54 +00:00
|
|
|
|
2005-11-22 04:57:45 +00:00
|
|
|
#ifndef FORCEINLINE
|
|
|
|
#if (_MSC_VER >= 1200)
|
|
|
|
#define FORCEINLINE __forceinline
|
|
|
|
#elif (_MSC_VER)
|
|
|
|
#define FORCEINLINE __inline
|
|
|
|
#else
|
2010-07-25 01:22:15 +00:00
|
|
|
#define FORCEINLINE extern __inline__ __attribute__((always_inline))
|
2005-11-22 04:57:45 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2005-11-30 07:36:08 +00:00
|
|
|
#if !defined(_NTSYSTEM_)
|
|
|
|
#define NTSYSAPI DECLSPEC_IMPORT
|
|
|
|
#define NTSYSCALLAPI DECLSPEC_IMPORT
|
|
|
|
#else
|
|
|
|
#define NTSYSAPI
|
|
|
|
#if defined(_NTDLLBUILD_)
|
|
|
|
#define NTSYSCALLAPI
|
|
|
|
#else
|
|
|
|
#define NTSYSCALLAPI DECLSPEC_ADDRSAFE
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#ifndef VOID
|
|
|
|
#define VOID void
|
|
|
|
#endif
|
|
|
|
typedef char CHAR;
|
|
|
|
typedef short SHORT;
|
2009-10-17 19:19:22 +00:00
|
|
|
#if !defined(__ROS_LONG64__) || defined(_M_AMD64)
|
2008-11-29 10:49:36 +00:00
|
|
|
typedef long LONG;
|
2009-01-18 06:25:43 +00:00
|
|
|
#else
|
|
|
|
typedef int LONG;
|
|
|
|
#endif
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef char CCHAR, *PCCHAR;
|
2008-11-29 10:49:36 +00:00
|
|
|
typedef void *PVOID;
|
2005-05-08 17:44:37 +00:00
|
|
|
|
|
|
|
/* FIXME for __WIN64 */
|
|
|
|
#ifndef __ptr64
|
|
|
|
#define __ptr64
|
|
|
|
#endif
|
|
|
|
typedef void* __ptr64 PVOID64;
|
|
|
|
|
2007-04-20 02:30:53 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
# define EXTERN_C extern "C"
|
|
|
|
#else
|
|
|
|
# define EXTERN_C extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define STDMETHODCALLTYPE __stdcall
|
|
|
|
#define STDMETHODVCALLTYPE __cdecl
|
|
|
|
#define STDAPICALLTYPE __stdcall
|
|
|
|
#define STDAPIVCALLTYPE __cdecl
|
|
|
|
|
|
|
|
#define STDAPI EXTERN_C HRESULT STDAPICALLTYPE
|
|
|
|
#define STDAPI_(type) EXTERN_C type STDAPICALLTYPE
|
|
|
|
#define STDMETHODIMP HRESULT STDMETHODCALLTYPE
|
|
|
|
#define STDMETHODIMP_(type) type STDMETHODCALLTYPE
|
|
|
|
#define STDAPIV EXTERN_C HRESULT STDAPIVCALLTYPE
|
|
|
|
#define STDAPIV_(type) EXTERN_C type STDAPIVCALLTYPE
|
|
|
|
#define STDMETHODIMPV HRESULT STDMETHODVCALLTYPE
|
|
|
|
#define STDMETHODIMPV_(type) type STDMETHODVCALLTYPE
|
|
|
|
|
2010-05-09 22:53:41 +00:00
|
|
|
/* C99 restrict support */
|
|
|
|
#if defined(ENABLE_RESTRICTED) && !defined(MIDL_PASS) && !defined(RC_INVOKED)
|
|
|
|
#if defined(_MSC_VER) && defined(_M_MRX000)
|
|
|
|
#define RESTRICTED_POINTER __restrict
|
|
|
|
#elif defined(__GNUC__) && ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 95)))
|
|
|
|
#define RESTRICTED_POINTER __restrict
|
|
|
|
#else
|
|
|
|
#define RESTRICTED_POINTER
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define RESTRICTED_POINTER
|
|
|
|
#endif
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef wchar_t WCHAR;
|
2010-09-29 22:54:00 +00:00
|
|
|
typedef WCHAR *PWCHAR,*LPWCH,*PWCH,*NWPSTR,*LPWSTR,*PWSTR,*PZZWSTR;
|
|
|
|
typedef CONST WCHAR *LPCWCH,*PCWCH,*LPCWSTR,*PCWSTR,*PCZZWSTR;
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef CHAR *PCHAR,*LPCH,*PCH,*NPSTR,*LPSTR,*PSTR;
|
2006-08-06 19:57:24 +00:00
|
|
|
typedef CONST CHAR *LPCCH,*PCCH,*PCSTR,*LPCSTR;
|
2008-12-13 21:28:05 +00:00
|
|
|
typedef PWSTR *PZPWSTR;
|
|
|
|
typedef CONST PWSTR *PCZPWSTR;
|
|
|
|
typedef WCHAR UNALIGNED *LPUWSTR,*PUWSTR;
|
|
|
|
typedef PCWSTR *PZPCWSTR;
|
|
|
|
typedef CONST WCHAR UNALIGNED *LPCUWSTR,*PCUWSTR;
|
|
|
|
typedef PSTR *PZPSTR;
|
|
|
|
typedef CONST PSTR *PCZPSTR;
|
|
|
|
typedef PCSTR *PZPCSTR;
|
|
|
|
|
2010-09-29 22:54:00 +00:00
|
|
|
|
2008-12-13 21:28:05 +00:00
|
|
|
#ifdef UNICODE
|
2005-05-08 17:44:37 +00:00
|
|
|
#ifndef _TCHAR_DEFINED
|
|
|
|
#define _TCHAR_DEFINED
|
2008-12-13 21:28:05 +00:00
|
|
|
typedef WCHAR TCHAR,*PTCHAR;
|
|
|
|
typedef WCHAR TBYTE ,*PTBYTE;
|
|
|
|
#endif
|
|
|
|
typedef LPWSTR LPTCH,PTCH,PTSTR,LPTSTR,LP;
|
|
|
|
typedef LPCWSTR PCTSTR,LPCTSTR;
|
|
|
|
typedef LPUWSTR PUTSTR,LPUTSTR;
|
|
|
|
typedef LPCUWSTR PCUTSTR,LPCUTSTR;
|
|
|
|
#define __TEXT(quote) L##quote
|
2005-05-08 17:44:37 +00:00
|
|
|
#else
|
2008-12-13 21:28:05 +00:00
|
|
|
#ifndef _TCHAR_DEFINED
|
|
|
|
#define _TCHAR_DEFINED
|
|
|
|
typedef char TCHAR,*PTCHAR;
|
|
|
|
typedef unsigned char TBYTE ,*PTBYTE;
|
2005-05-08 17:44:37 +00:00
|
|
|
#endif
|
2008-12-13 21:28:05 +00:00
|
|
|
typedef LPSTR LPTCH,PTCH,PTSTR,LPTSTR,PUTSTR,LPUTSTR;
|
|
|
|
typedef LPCSTR PCTSTR,LPCTSTR,PCUTSTR,LPCUTSTR;
|
|
|
|
#define __TEXT(quote) quote
|
2005-05-08 17:44:37 +00:00
|
|
|
#endif
|
2008-12-13 21:28:05 +00:00
|
|
|
|
|
|
|
#define TEXT(quote) __TEXT(quote)
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef SHORT *PSHORT;
|
|
|
|
typedef LONG *PLONG;
|
|
|
|
#ifdef STRICT
|
|
|
|
typedef void *HANDLE;
|
|
|
|
#define DECLARE_HANDLE(n) typedef struct n##__{int i;}*n
|
|
|
|
#else
|
|
|
|
typedef PVOID HANDLE;
|
|
|
|
#define DECLARE_HANDLE(n) typedef HANDLE n
|
|
|
|
#endif
|
2008-11-29 10:49:36 +00:00
|
|
|
typedef HANDLE *PHANDLE;
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef DWORD LCID;
|
|
|
|
typedef PDWORD PLCID;
|
|
|
|
typedef WORD LANGID;
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define _HAVE_INT64
|
2008-12-20 23:16:49 +00:00
|
|
|
#ifndef _INTEGRAL_MAX_BITS
|
|
|
|
# define _INTEGRAL_MAX_BITS 64
|
|
|
|
#endif
|
2005-05-08 17:44:37 +00:00
|
|
|
#undef __int64
|
|
|
|
#define __int64 long long
|
2009-08-07 17:07:10 +00:00
|
|
|
#elif (defined(__WATCOMC__) || defined(_MSC_VER)) && (defined(_INTEGRAL_MAX_BITS) && _INTEGRAL_MAX_BITS >= 64 )
|
2005-05-08 17:44:37 +00:00
|
|
|
#define _HAVE_INT64
|
|
|
|
#endif /* __GNUC__/__WATCOMC */
|
|
|
|
#if defined(_HAVE_INT64) || (defined(_INTEGRAL_MAX_BITS) && _INTEGRAL_MAX_BITS >= 64)
|
|
|
|
typedef __int64 LONGLONG;
|
|
|
|
typedef unsigned __int64 DWORDLONG;
|
|
|
|
#else
|
|
|
|
typedef double LONGLONG,DWORDLONG;
|
|
|
|
#endif
|
|
|
|
typedef LONGLONG *PLONGLONG;
|
|
|
|
typedef DWORDLONG *PDWORDLONG;
|
|
|
|
typedef DWORDLONG ULONGLONG,*PULONGLONG;
|
|
|
|
typedef LONGLONG USN;
|
|
|
|
#ifdef _HAVE_INT64
|
|
|
|
#define Int32x32To64(a,b) ((LONGLONG)(a)*(LONGLONG)(b))
|
|
|
|
#define UInt32x32To64(a,b) ((DWORDLONG)(a)*(DWORDLONG)(b))
|
|
|
|
#define Int64ShllMod32(a,b) ((DWORDLONG)(a)<<(b))
|
|
|
|
#define Int64ShraMod32(a,b) ((LONGLONG)(a)>>(b))
|
|
|
|
#define Int64ShrlMod32(a,b) ((DWORDLONG)(a)>>(b))
|
|
|
|
#endif
|
2005-09-06 19:37:38 +00:00
|
|
|
#define ANSI_NULL ((CHAR)0)
|
|
|
|
#define UNICODE_NULL ((WCHAR)0)
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef BYTE BOOLEAN,*PBOOLEAN;
|
|
|
|
#endif
|
|
|
|
typedef BYTE FCHAR;
|
|
|
|
typedef WORD FSHORT;
|
|
|
|
typedef DWORD FLONG;
|
|
|
|
|
2009-12-16 23:39:20 +00:00
|
|
|
#define C_ASSERT(expr) extern char (*c_assert(void)) [(expr) ? 1 : -1]
|
2008-05-21 16:10:00 +00:00
|
|
|
|
2007-09-03 08:57:19 +00:00
|
|
|
#include "intrin.h"
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define NTAPI __stdcall
|
|
|
|
#include <basetsd.h>
|
2009-06-17 11:18:51 +00:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable:4201)
|
|
|
|
#pragma warning(disable:4214)
|
|
|
|
#pragma warning(disable:4820)
|
|
|
|
#endif
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define ACE_OBJECT_TYPE_PRESENT 0x00000001
|
|
|
|
#define ACE_INHERITED_OBJECT_TYPE_PRESENT 0x00000002
|
|
|
|
#define APPLICATION_ERROR_MASK 0x20000000
|
|
|
|
#define ERROR_SEVERITY_SUCCESS 0x00000000
|
|
|
|
#define ERROR_SEVERITY_INFORMATIONAL 0x40000000
|
|
|
|
#define ERROR_SEVERITY_WARNING 0x80000000
|
|
|
|
#define ERROR_SEVERITY_ERROR 0xC0000000
|
|
|
|
/* also in ddk/ntifs.h */
|
|
|
|
#define COMPRESSION_FORMAT_NONE (0x0000)
|
|
|
|
#define COMPRESSION_FORMAT_DEFAULT (0x0001)
|
|
|
|
#define COMPRESSION_FORMAT_LZNT1 (0x0002)
|
|
|
|
#define COMPRESSION_ENGINE_STANDARD (0x0000)
|
|
|
|
#define COMPRESSION_ENGINE_MAXIMUM (0x0100)
|
|
|
|
#define COMPRESSION_ENGINE_HIBER (0x0200)
|
|
|
|
#define ACCESS_ALLOWED_ACE_TYPE (0x0)
|
|
|
|
#define ACCESS_DENIED_ACE_TYPE (0x1)
|
|
|
|
#define SYSTEM_AUDIT_ACE_TYPE (0x2)
|
|
|
|
#define SYSTEM_ALARM_ACE_TYPE (0x3)
|
|
|
|
/*end ntifs.h */
|
|
|
|
#define ANYSIZE_ARRAY 1
|
|
|
|
#define OBJECT_INHERIT_ACE 1
|
|
|
|
#define CONTAINER_INHERIT_ACE 2
|
|
|
|
#define NO_PROPAGATE_INHERIT_ACE 4
|
|
|
|
#define INHERIT_ONLY_ACE 8
|
2005-08-15 02:24:48 +00:00
|
|
|
#define INHERITED_ACE 10
|
2006-05-10 09:32:23 +00:00
|
|
|
#define VALID_INHERIT_FLAGS 0x1F
|
2005-05-08 17:44:37 +00:00
|
|
|
#define SUCCESSFUL_ACCESS_ACE_FLAG 64
|
|
|
|
#define FAILED_ACCESS_ACE_FLAG 128
|
|
|
|
#define DELETE 0x00010000L
|
|
|
|
#define READ_CONTROL 0x20000L
|
|
|
|
#define WRITE_DAC 0x40000L
|
|
|
|
#define WRITE_OWNER 0x80000L
|
|
|
|
#define SYNCHRONIZE 0x100000L
|
|
|
|
#define STANDARD_RIGHTS_REQUIRED 0xF0000
|
|
|
|
#define STANDARD_RIGHTS_READ 0x20000
|
|
|
|
#define STANDARD_RIGHTS_WRITE 0x20000
|
|
|
|
#define STANDARD_RIGHTS_EXECUTE 0x20000
|
|
|
|
#define STANDARD_RIGHTS_ALL 0x1F0000
|
|
|
|
#define SPECIFIC_RIGHTS_ALL 0xFFFF
|
|
|
|
#define ACCESS_SYSTEM_SECURITY 0x1000000
|
|
|
|
|
2009-02-05 14:18:20 +00:00
|
|
|
#define REG_STANDARD_FORMAT 1
|
|
|
|
#define REG_LATEST_FORMAT 2
|
|
|
|
#define REG_NO_COMPRESSION 4
|
|
|
|
|
2005-11-18 23:19:48 +00:00
|
|
|
#ifndef WIN32_NO_STATUS
|
|
|
|
|
|
|
|
#define STATUS_WAIT_0 ((DWORD)0x00000000)
|
|
|
|
#define STATUS_ABANDONED_WAIT_0 ((DWORD)0x00000080)
|
|
|
|
#define STATUS_USER_APC ((DWORD)0x000000C0)
|
|
|
|
#define STATUS_TIMEOUT ((DWORD)0x00000102)
|
|
|
|
#define STATUS_PENDING ((DWORD)0x00000103)
|
|
|
|
#define STATUS_SEGMENT_NOTIFICATION ((DWORD)0x40000005)
|
|
|
|
#define STATUS_GUARD_PAGE_VIOLATION ((DWORD)0x80000001)
|
|
|
|
#define STATUS_DATATYPE_MISALIGNMENT ((DWORD)0x80000002)
|
|
|
|
#define STATUS_BREAKPOINT ((DWORD)0x80000003)
|
|
|
|
#define STATUS_SINGLE_STEP ((DWORD)0x80000004)
|
|
|
|
#define STATUS_ACCESS_VIOLATION ((DWORD)0xC0000005)
|
|
|
|
#define STATUS_IN_PAGE_ERROR ((DWORD)0xC0000006)
|
|
|
|
#define STATUS_INVALID_HANDLE ((DWORD)0xC0000008)
|
|
|
|
#define STATUS_NO_MEMORY ((DWORD)0xC0000017)
|
|
|
|
#define STATUS_ILLEGAL_INSTRUCTION ((DWORD)0xC000001D)
|
|
|
|
#define STATUS_NONCONTINUABLE_EXCEPTION ((DWORD)0xC0000025)
|
|
|
|
#define STATUS_INVALID_DISPOSITION ((DWORD)0xC0000026)
|
|
|
|
#define STATUS_ARRAY_BOUNDS_EXCEEDED ((DWORD)0xC000008C)
|
|
|
|
#define STATUS_FLOAT_DENORMAL_OPERAND ((DWORD)0xC000008D)
|
|
|
|
#define STATUS_FLOAT_DIVIDE_BY_ZERO ((DWORD)0xC000008E)
|
|
|
|
#define STATUS_FLOAT_INEXACT_RESULT ((DWORD)0xC000008F)
|
|
|
|
#define STATUS_FLOAT_INVALID_OPERATION ((DWORD)0xC0000090)
|
|
|
|
#define STATUS_FLOAT_OVERFLOW ((DWORD)0xC0000091)
|
|
|
|
#define STATUS_FLOAT_STACK_CHECK ((DWORD)0xC0000092)
|
|
|
|
#define STATUS_FLOAT_UNDERFLOW ((DWORD)0xC0000093)
|
|
|
|
#define STATUS_INTEGER_DIVIDE_BY_ZERO ((DWORD)0xC0000094)
|
|
|
|
#define STATUS_INTEGER_OVERFLOW ((DWORD)0xC0000095)
|
|
|
|
#define STATUS_PRIVILEGED_INSTRUCTION ((DWORD)0xC0000096)
|
|
|
|
#define STATUS_STACK_OVERFLOW ((DWORD)0xC00000FD)
|
|
|
|
#define STATUS_CONTROL_C_EXIT ((DWORD)0xC000013A)
|
|
|
|
#define STATUS_FLOAT_MULTIPLE_FAULTS ((DWORD)0xC00002B4)
|
|
|
|
#define STATUS_FLOAT_MULTIPLE_TRAPS ((DWORD)0xC00002B5)
|
|
|
|
#define STATUS_REG_NAT_CONSUMPTION ((DWORD)0xC00002C9)
|
|
|
|
#define STATUS_SXS_EARLY_DEACTIVATION ((DWORD)0xC015000F)
|
|
|
|
#define STATUS_SXS_INVALID_DEACTIVATION ((DWORD)0xC0150010)
|
|
|
|
|
|
|
|
#define DBG_EXCEPTION_HANDLED ((DWORD)0x00010001)
|
|
|
|
#define DBG_CONTINUE ((DWORD)0x00010002)
|
|
|
|
#define DBG_TERMINATE_THREAD ((DWORD)0x40010003)
|
|
|
|
#define DBG_TERMINATE_PROCESS ((DWORD)0x40010004)
|
|
|
|
#define DBG_CONTROL_C ((DWORD)0x40010005)
|
|
|
|
#define DBG_CONTROL_BREAK ((DWORD)0x40010008)
|
|
|
|
#define DBG_COMMAND_EXCEPTION ((DWORD)0x40010009)
|
|
|
|
#define DBG_EXCEPTION_NOT_HANDLED ((DWORD)0x80010001)
|
|
|
|
|
|
|
|
#endif /* WIN32_NO_STATUS */
|
2005-10-19 22:51:21 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define MAXIMUM_ALLOWED 0x2000000
|
|
|
|
#define GENERIC_READ 0x80000000
|
|
|
|
#define GENERIC_WRITE 0x40000000
|
|
|
|
#define GENERIC_EXECUTE 0x20000000
|
|
|
|
#define GENERIC_ALL 0x10000000
|
|
|
|
|
|
|
|
#define INVALID_FILE_ATTRIBUTES ((DWORD)-1)
|
|
|
|
|
|
|
|
/* Also in ddk/winddk.h */
|
|
|
|
#define FILE_LIST_DIRECTORY 0x00000001
|
|
|
|
#define FILE_READ_DATA 0x00000001
|
|
|
|
#define FILE_ADD_FILE 0x00000002
|
|
|
|
#define FILE_WRITE_DATA 0x00000002
|
|
|
|
#define FILE_ADD_SUBDIRECTORY 0x00000004
|
|
|
|
#define FILE_APPEND_DATA 0x00000004
|
|
|
|
#define FILE_CREATE_PIPE_INSTANCE 0x00000004
|
|
|
|
#define FILE_READ_EA 0x00000008
|
|
|
|
#define FILE_READ_PROPERTIES 0x00000008
|
|
|
|
#define FILE_WRITE_EA 0x00000010
|
|
|
|
#define FILE_WRITE_PROPERTIES 0x00000010
|
|
|
|
#define FILE_EXECUTE 0x00000020
|
|
|
|
#define FILE_TRAVERSE 0x00000020
|
|
|
|
#define FILE_DELETE_CHILD 0x00000040
|
|
|
|
#define FILE_READ_ATTRIBUTES 0x00000080
|
|
|
|
#define FILE_WRITE_ATTRIBUTES 0x00000100
|
|
|
|
|
|
|
|
#define FILE_SHARE_READ 0x00000001
|
|
|
|
#define FILE_SHARE_WRITE 0x00000002
|
|
|
|
#define FILE_SHARE_DELETE 0x00000004
|
|
|
|
#define FILE_SHARE_VALID_FLAGS 0x00000007
|
2005-05-09 01:50:07 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define FILE_ATTRIBUTE_READONLY 0x00000001
|
|
|
|
#define FILE_ATTRIBUTE_HIDDEN 0x00000002
|
|
|
|
#define FILE_ATTRIBUTE_SYSTEM 0x00000004
|
|
|
|
#define FILE_ATTRIBUTE_DIRECTORY 0x00000010
|
|
|
|
#define FILE_ATTRIBUTE_ARCHIVE 0x00000020
|
|
|
|
#define FILE_ATTRIBUTE_DEVICE 0x00000040
|
|
|
|
#define FILE_ATTRIBUTE_NORMAL 0x00000080
|
|
|
|
#define FILE_ATTRIBUTE_TEMPORARY 0x00000100
|
|
|
|
#define FILE_ATTRIBUTE_SPARSE_FILE 0x00000200
|
|
|
|
#define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400
|
|
|
|
#define FILE_ATTRIBUTE_COMPRESSED 0x00000800
|
|
|
|
#define FILE_ATTRIBUTE_OFFLINE 0x00001000
|
|
|
|
#define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
|
|
|
|
#define FILE_ATTRIBUTE_ENCRYPTED 0x00004000
|
|
|
|
#define FILE_ATTRIBUTE_VALID_FLAGS 0x00007fb7
|
|
|
|
#define FILE_ATTRIBUTE_VALID_SET_FLAGS 0x000031a7
|
2005-05-09 01:50:07 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define FILE_COPY_STRUCTURED_STORAGE 0x00000041
|
|
|
|
#define FILE_STRUCTURED_STORAGE 0x00000441
|
2005-05-09 01:50:07 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define FILE_VALID_OPTION_FLAGS 0x00ffffff
|
|
|
|
#define FILE_VALID_PIPE_OPTION_FLAGS 0x00000032
|
|
|
|
#define FILE_VALID_MAILSLOT_OPTION_FLAGS 0x00000032
|
|
|
|
#define FILE_VALID_SET_FLAGS 0x00000036
|
2005-05-09 01:50:07 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define FILE_DIRECTORY_FILE 0x00000001
|
|
|
|
#define FILE_WRITE_THROUGH 0x00000002
|
|
|
|
#define FILE_SEQUENTIAL_ONLY 0x00000004
|
|
|
|
#define FILE_NO_INTERMEDIATE_BUFFERING 0x00000008
|
|
|
|
#define FILE_SYNCHRONOUS_IO_ALERT 0x00000010
|
|
|
|
#define FILE_SYNCHRONOUS_IO_NONALERT 0x00000020
|
|
|
|
#define FILE_NON_DIRECTORY_FILE 0x00000040
|
|
|
|
#define FILE_CREATE_TREE_CONNECTION 0x00000080
|
|
|
|
#define FILE_COMPLETE_IF_OPLOCKED 0x00000100
|
|
|
|
#define FILE_NO_EA_KNOWLEDGE 0x00000200
|
2010-02-27 16:35:54 +00:00
|
|
|
#define FILE_OPEN_REMOTE_INSTANCE 0x00000400
|
2005-05-08 17:44:37 +00:00
|
|
|
#define FILE_RANDOM_ACCESS 0x00000800
|
|
|
|
#define FILE_DELETE_ON_CLOSE 0x00001000
|
|
|
|
#define FILE_OPEN_BY_FILE_ID 0x00002000
|
|
|
|
#define FILE_OPEN_FOR_BACKUP_INTENT 0x00004000
|
|
|
|
#define FILE_NO_COMPRESSION 0x00008000
|
|
|
|
#define FILE_RESERVE_OPFILTER 0x00100000
|
|
|
|
#define FILE_OPEN_REPARSE_POINT 0x00200000
|
|
|
|
#define FILE_OPEN_NO_RECALL 0x00400000
|
|
|
|
#define FILE_OPEN_FOR_FREE_SPACE_QUERY 0x00800000
|
|
|
|
|
|
|
|
#define FILE_ALL_ACCESS \
|
|
|
|
(STANDARD_RIGHTS_REQUIRED | \
|
|
|
|
SYNCHRONIZE | \
|
|
|
|
0x1FF)
|
|
|
|
|
|
|
|
#define FILE_GENERIC_EXECUTE \
|
|
|
|
(STANDARD_RIGHTS_EXECUTE | \
|
|
|
|
FILE_READ_ATTRIBUTES | \
|
|
|
|
FILE_EXECUTE | \
|
|
|
|
SYNCHRONIZE)
|
|
|
|
|
|
|
|
#define FILE_GENERIC_READ \
|
|
|
|
(STANDARD_RIGHTS_READ | \
|
|
|
|
FILE_READ_DATA | \
|
|
|
|
FILE_READ_ATTRIBUTES | \
|
|
|
|
FILE_READ_EA | \
|
|
|
|
SYNCHRONIZE)
|
|
|
|
|
|
|
|
#define FILE_GENERIC_WRITE \
|
|
|
|
(STANDARD_RIGHTS_WRITE | \
|
|
|
|
FILE_WRITE_DATA | \
|
|
|
|
FILE_WRITE_ATTRIBUTES | \
|
|
|
|
FILE_WRITE_EA | \
|
|
|
|
FILE_APPEND_DATA | \
|
|
|
|
SYNCHRONIZE)
|
|
|
|
/* end winddk.h */
|
|
|
|
/* also in ddk/ntifs.h */
|
|
|
|
#define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001
|
|
|
|
#define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002
|
|
|
|
#define FILE_NOTIFY_CHANGE_NAME 0x00000003
|
|
|
|
#define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004
|
|
|
|
#define FILE_NOTIFY_CHANGE_SIZE 0x00000008
|
|
|
|
#define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010
|
|
|
|
#define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x00000020
|
|
|
|
#define FILE_NOTIFY_CHANGE_CREATION 0x00000040
|
|
|
|
#define FILE_NOTIFY_CHANGE_EA 0x00000080
|
|
|
|
#define FILE_NOTIFY_CHANGE_SECURITY 0x00000100
|
|
|
|
#define FILE_NOTIFY_CHANGE_STREAM_NAME 0x00000200
|
|
|
|
#define FILE_NOTIFY_CHANGE_STREAM_SIZE 0x00000400
|
|
|
|
#define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800
|
|
|
|
#define FILE_NOTIFY_VALID_MASK 0x00000fff
|
|
|
|
|
|
|
|
#define FILE_CASE_SENSITIVE_SEARCH 0x00000001
|
|
|
|
#define FILE_CASE_PRESERVED_NAMES 0x00000002
|
|
|
|
#define FILE_UNICODE_ON_DISK 0x00000004
|
|
|
|
#define FILE_PERSISTENT_ACLS 0x00000008
|
|
|
|
#define FILE_FILE_COMPRESSION 0x00000010
|
|
|
|
#define FILE_VOLUME_QUOTAS 0x00000020
|
|
|
|
#define FILE_SUPPORTS_SPARSE_FILES 0x00000040
|
|
|
|
#define FILE_SUPPORTS_REPARSE_POINTS 0x00000080
|
|
|
|
#define FILE_SUPPORTS_REMOTE_STORAGE 0x00000100
|
|
|
|
#define FS_LFN_APIS 0x00004000
|
|
|
|
#define FILE_VOLUME_IS_COMPRESSED 0x00008000
|
|
|
|
#define FILE_SUPPORTS_OBJECT_IDS 0x00010000
|
|
|
|
#define FILE_SUPPORTS_ENCRYPTION 0x00020000
|
|
|
|
#define FILE_NAMED_STREAMS 0x00040000
|
|
|
|
|
|
|
|
#define IO_COMPLETION_QUERY_STATE 0x0001
|
|
|
|
#define IO_COMPLETION_MODIFY_STATE 0x0002
|
|
|
|
#define IO_COMPLETION_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
|
|
|
|
/* end ntifs.h */
|
|
|
|
|
|
|
|
/* also in ddk/winddk.h */
|
|
|
|
#define DUPLICATE_CLOSE_SOURCE 0x00000001
|
|
|
|
#define DUPLICATE_SAME_ACCESS 0x00000002
|
|
|
|
/* end winddk.k */
|
|
|
|
|
|
|
|
#define MAILSLOT_NO_MESSAGE ((DWORD)-1)
|
|
|
|
#define MAILSLOT_WAIT_FOREVER ((DWORD)-1)
|
|
|
|
#define PROCESS_TERMINATE 1
|
|
|
|
#define PROCESS_CREATE_THREAD 2
|
|
|
|
#define PROCESS_SET_SESSIONID 4
|
|
|
|
#define PROCESS_VM_OPERATION 8
|
|
|
|
#define PROCESS_VM_READ 16
|
|
|
|
#define PROCESS_VM_WRITE 32
|
|
|
|
#define PROCESS_CREATE_PROCESS 128
|
|
|
|
#define PROCESS_SET_QUOTA 256
|
|
|
|
#define PROCESS_SET_INFORMATION 512
|
|
|
|
#define PROCESS_QUERY_INFORMATION 1024
|
2005-05-08 18:02:41 +00:00
|
|
|
#define PROCESS_SUSPEND_RESUME 2048
|
2008-09-14 18:22:53 +00:00
|
|
|
#define PROCESS_QUERY_LIMITED_INFORMATION 0x1000
|
2005-05-08 17:44:37 +00:00
|
|
|
#define PROCESS_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0xFFF)
|
2006-01-10 22:25:21 +00:00
|
|
|
#define PROCESS_DUP_HANDLE 64
|
2005-05-08 17:44:37 +00:00
|
|
|
#define THREAD_TERMINATE 1
|
|
|
|
#define THREAD_SUSPEND_RESUME 2
|
|
|
|
#define THREAD_GET_CONTEXT 8
|
|
|
|
#define THREAD_SET_CONTEXT 16
|
|
|
|
#define THREAD_SET_INFORMATION 32
|
|
|
|
#define THREAD_QUERY_INFORMATION 64
|
|
|
|
#define THREAD_SET_THREAD_TOKEN 128
|
|
|
|
#define THREAD_IMPERSONATE 256
|
|
|
|
#define THREAD_DIRECT_IMPERSONATION 0x200
|
|
|
|
#define THREAD_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3FF)
|
|
|
|
#define MUTANT_QUERY_STATE 0x0001
|
|
|
|
#define MUTANT_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|MUTANT_QUERY_STATE)
|
|
|
|
#define TIMER_QUERY_STATE 0x0001
|
|
|
|
#define TIMER_MODIFY_STATE 0x0002
|
|
|
|
#define TIMER_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|TIMER_QUERY_STATE|TIMER_MODIFY_STATE)
|
2007-03-02 16:26:45 +00:00
|
|
|
#define THREAD_BASE_PRIORITY_LOWRT 15
|
|
|
|
#define THREAD_BASE_PRIORITY_MAX 2
|
|
|
|
#define THREAD_BASE_PRIORITY_MIN (-2)
|
|
|
|
#define THREAD_BASE_PRIORITY_IDLE (-15)
|
2005-05-08 17:44:37 +00:00
|
|
|
/*
|
|
|
|
* To prevent gcc compiler warnings, bracket these defines when initialising
|
|
|
|
* a SID_IDENTIFIER_AUTHORITY, eg.
|
|
|
|
* SID_IDENTIFIER_AUTHORITY aNullSidAuthority = {SECURITY_NULL_SID_AUTHORITY};
|
|
|
|
*/
|
2005-07-26 14:00:45 +00:00
|
|
|
#define SID_MAX_SUB_AUTHORITIES 15
|
2006-08-06 18:08:16 +00:00
|
|
|
|
|
|
|
/* security entities */
|
|
|
|
#define SECURITY_NULL_RID (0x00000000L)
|
|
|
|
#define SECURITY_WORLD_RID (0x00000000L)
|
|
|
|
#define SECURITY_LOCAL_RID (0X00000000L)
|
|
|
|
|
|
|
|
#define SECURITY_NULL_SID_AUTHORITY {0,0,0,0,0,0}
|
|
|
|
|
|
|
|
/* S-1-1 */
|
|
|
|
#define SECURITY_WORLD_SID_AUTHORITY {0,0,0,0,0,1}
|
|
|
|
|
|
|
|
/* S-1-2 */
|
|
|
|
#define SECURITY_LOCAL_SID_AUTHORITY {0,0,0,0,0,2}
|
|
|
|
|
|
|
|
/* S-1-3 */
|
|
|
|
#define SECURITY_CREATOR_SID_AUTHORITY {0,0,0,0,0,3}
|
|
|
|
#define SECURITY_CREATOR_OWNER_RID (0x00000000L)
|
|
|
|
#define SECURITY_CREATOR_GROUP_RID (0x00000001L)
|
|
|
|
#define SECURITY_CREATOR_OWNER_SERVER_RID (0x00000002L)
|
|
|
|
#define SECURITY_CREATOR_GROUP_SERVER_RID (0x00000003L)
|
|
|
|
|
|
|
|
/* S-1-4 */
|
|
|
|
#define SECURITY_NON_UNIQUE_AUTHORITY {0,0,0,0,0,4}
|
|
|
|
|
|
|
|
/* S-1-5 */
|
|
|
|
#define SECURITY_NT_AUTHORITY {0,0,0,0,0,5}
|
|
|
|
#define SECURITY_DIALUP_RID 0x00000001L
|
|
|
|
#define SECURITY_NETWORK_RID 0x00000002L
|
|
|
|
#define SECURITY_BATCH_RID 0x00000003L
|
|
|
|
#define SECURITY_INTERACTIVE_RID 0x00000004L
|
|
|
|
#define SECURITY_LOGON_IDS_RID 0x00000005L
|
|
|
|
#define SECURITY_SERVICE_RID 0x00000006L
|
|
|
|
#define SECURITY_ANONYMOUS_LOGON_RID 0x00000007L
|
|
|
|
#define SECURITY_PROXY_RID 0x00000008L
|
|
|
|
#define SECURITY_ENTERPRISE_CONTROLLERS_RID 0x00000009L
|
|
|
|
#define SECURITY_SERVER_LOGON_RID SECURITY_ENTERPRISE_CONTROLLERS_RID
|
|
|
|
#define SECURITY_PRINCIPAL_SELF_RID 0x0000000AL
|
|
|
|
#define SECURITY_AUTHENTICATED_USER_RID 0x0000000BL
|
|
|
|
#define SECURITY_RESTRICTED_CODE_RID 0x0000000CL
|
|
|
|
#define SECURITY_TERMINAL_SERVER_RID 0x0000000DL
|
|
|
|
#define SECURITY_REMOTE_LOGON_RID 0x0000000EL
|
|
|
|
#define SECURITY_THIS_ORGANIZATION_RID 0x0000000FL
|
|
|
|
#define SECURITY_LOCAL_SYSTEM_RID 0x00000012L
|
|
|
|
#define SECURITY_LOCAL_SERVICE_RID 0x00000013L
|
|
|
|
#define SECURITY_NETWORK_SERVICE_RID 0x00000014L
|
|
|
|
#define SECURITY_NT_NON_UNIQUE 0x00000015L
|
|
|
|
#define SECURITY_BUILTIN_DOMAIN_RID 0x00000020L
|
|
|
|
|
2008-10-25 07:15:16 +00:00
|
|
|
#define SECURITY_PACKAGE_BASE_RID 0x00000040L
|
|
|
|
#define SECURITY_PACKAGE_NTLM_RID 0x0000000AL
|
|
|
|
#define SECURITY_PACKAGE_SCHANNEL_RID 0x0000000EL
|
|
|
|
#define SECURITY_PACKAGE_DIGEST_RID 0x00000015L
|
|
|
|
#define SECURITY_OTHER_ORGANIZATION_RID 0x000003E8L
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define SECURITY_LOGON_IDS_RID_COUNT 0x3
|
|
|
|
#define SID_REVISION 1
|
2006-08-06 18:22:36 +00:00
|
|
|
|
|
|
|
#define FOREST_USER_RID_MAX 0x000001F3L
|
|
|
|
#define DOMAIN_USER_RID_ADMIN 0x000001F4L
|
|
|
|
#define DOMAIN_USER_RID_GUEST 0x000001F5L
|
|
|
|
#define DOMAIN_USER_RID_KRBTGT 0x000001F6L
|
|
|
|
#define DOMAIN_USER_RID_MAX 0x000003E7L
|
|
|
|
|
|
|
|
#define DOMAIN_GROUP_RID_ADMINS 0x00000200L
|
|
|
|
#define DOMAIN_GROUP_RID_USERS 0x00000201L
|
|
|
|
#define DOMAIN_GROUP_RID_GUESTS 0x00000202L
|
2007-09-17 13:52:44 +00:00
|
|
|
#define DOMAIN_GROUP_RID_COMPUTERS 0x00000203L
|
|
|
|
#define DOMAIN_GROUP_RID_CONTROLLERS 0x00000204L
|
|
|
|
#define DOMAIN_GROUP_RID_CERT_ADMINS 0x00000205L
|
|
|
|
#define DOMAIN_GROUP_RID_SCHEMA_ADMINS 0x00000206L
|
|
|
|
#define DOMAIN_GROUP_RID_ENTERPRISE_ADMINS 0x00000207L
|
|
|
|
#define DOMAIN_GROUP_RID_POLICY_ADMINS 0x00000208L
|
2006-08-06 18:22:36 +00:00
|
|
|
|
2009-02-05 08:50:14 +00:00
|
|
|
#define SECURITY_MANDATORY_LABEL_AUTHORITY {0,0,0,0,0,16}
|
|
|
|
#define SECURITY_MANDATORY_UNTRUSTED_RID 0x00000000L
|
|
|
|
#define SECURITY_MANDATORY_LOW_RID 0x00001000L
|
|
|
|
#define SECURITY_MANDATORY_MEDIUM_RID 0x00002000L
|
|
|
|
#define SECURITY_MANDATORY_HIGH_RID 0x00003000L
|
|
|
|
#define SECURITY_MANDATORY_SYSTEM_RID 0x00004000L
|
|
|
|
#define SECURITY_MANDATORY_PROTECTED_PROCESS_RID 0x00005000L
|
|
|
|
|
2006-08-06 18:22:36 +00:00
|
|
|
#define DOMAIN_ALIAS_RID_ADMINS 0x00000220L
|
|
|
|
#define DOMAIN_ALIAS_RID_USERS 0x00000221L
|
|
|
|
#define DOMAIN_ALIAS_RID_GUESTS 0x00000222L
|
|
|
|
#define DOMAIN_ALIAS_RID_POWER_USERS 0x00000223L
|
|
|
|
|
|
|
|
#define DOMAIN_ALIAS_RID_ACCOUNT_OPS 0x00000224L
|
|
|
|
#define DOMAIN_ALIAS_RID_SYSTEM_OPS 0x00000225L
|
|
|
|
#define DOMAIN_ALIAS_RID_PRINT_OPS 0x00000226L
|
|
|
|
#define DOMAIN_ALIAS_RID_BACKUP_OPS 0x00000227L
|
|
|
|
|
|
|
|
#define DOMAIN_ALIAS_RID_REPLICATOR 0x00000228L
|
|
|
|
#define DOMAIN_ALIAS_RID_RAS_SERVERS 0x00000229L
|
|
|
|
#define DOMAIN_ALIAS_RID_PREW2KCOMPACCESS 0x0000022AL
|
|
|
|
#define DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS 0x0000022BL
|
|
|
|
#define DOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS 0x0000022CL
|
|
|
|
#define DOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS 0x0000022DL
|
|
|
|
|
|
|
|
#define DOMAIN_ALIAS_RID_MONITORING_USERS 0x0000022EL
|
|
|
|
#define DOMAIN_ALIAS_RID_LOGGING_USERS 0x0000022FL
|
|
|
|
#define DOMAIN_ALIAS_RID_AUTHORIZATIONACCESS 0x00000230L
|
|
|
|
#define DOMAIN_ALIAS_RID_TS_LICENSE_SERVERS 0x00000231L
|
|
|
|
#define DOMAIN_ALIAS_RID_DCOM_USERS 0x00000232L
|
2005-07-27 01:31:34 +00:00
|
|
|
|
2006-10-15 16:52:25 +00:00
|
|
|
#define SECURITY_MANDATORY_LABEL_AUTHORITY {0,0,0,0,0,16}
|
|
|
|
|
2009-02-05 08:50:14 +00:00
|
|
|
typedef enum {
|
2010-05-15 16:53:39 +00:00
|
|
|
WinNullSid = 0,
|
|
|
|
WinWorldSid = 1,
|
|
|
|
WinLocalSid = 2,
|
|
|
|
WinCreatorOwnerSid = 3,
|
|
|
|
WinCreatorGroupSid = 4,
|
|
|
|
WinCreatorOwnerServerSid = 5,
|
|
|
|
WinCreatorGroupServerSid = 6,
|
|
|
|
WinNtAuthoritySid = 7,
|
|
|
|
WinDialupSid = 8,
|
|
|
|
WinNetworkSid = 9,
|
|
|
|
WinBatchSid = 10,
|
|
|
|
WinInteractiveSid = 11,
|
|
|
|
WinServiceSid = 12,
|
|
|
|
WinAnonymousSid = 13,
|
|
|
|
WinProxySid = 14,
|
|
|
|
WinEnterpriseControllersSid = 15,
|
|
|
|
WinSelfSid = 16,
|
|
|
|
WinAuthenticatedUserSid = 17,
|
|
|
|
WinRestrictedCodeSid = 18,
|
|
|
|
WinTerminalServerSid = 19,
|
|
|
|
WinRemoteLogonIdSid = 20,
|
|
|
|
WinLogonIdsSid = 21,
|
|
|
|
WinLocalSystemSid = 22,
|
|
|
|
WinLocalServiceSid = 23,
|
|
|
|
WinNetworkServiceSid = 24,
|
|
|
|
WinBuiltinDomainSid = 25,
|
|
|
|
WinBuiltinAdministratorsSid = 26,
|
|
|
|
WinBuiltinUsersSid = 27,
|
|
|
|
WinBuiltinGuestsSid = 28,
|
|
|
|
WinBuiltinPowerUsersSid = 29,
|
|
|
|
WinBuiltinAccountOperatorsSid = 30,
|
|
|
|
WinBuiltinSystemOperatorsSid = 31,
|
|
|
|
WinBuiltinPrintOperatorsSid = 32,
|
|
|
|
WinBuiltinBackupOperatorsSid = 33,
|
|
|
|
WinBuiltinReplicatorSid = 34,
|
|
|
|
WinBuiltinPreWindows2000CompatibleAccessSid = 35,
|
|
|
|
WinBuiltinRemoteDesktopUsersSid = 36,
|
|
|
|
WinBuiltinNetworkConfigurationOperatorsSid = 37,
|
|
|
|
WinAccountAdministratorSid = 38,
|
|
|
|
WinAccountGuestSid = 39,
|
|
|
|
WinAccountKrbtgtSid = 40,
|
|
|
|
WinAccountDomainAdminsSid = 41,
|
|
|
|
WinAccountDomainUsersSid = 42,
|
|
|
|
WinAccountDomainGuestsSid = 43,
|
|
|
|
WinAccountComputersSid = 44,
|
|
|
|
WinAccountControllersSid = 45,
|
|
|
|
WinAccountCertAdminsSid = 46,
|
|
|
|
WinAccountSchemaAdminsSid = 47,
|
|
|
|
WinAccountEnterpriseAdminsSid = 48,
|
|
|
|
WinAccountPolicyAdminsSid = 49,
|
|
|
|
WinAccountRasAndIasServersSid = 50,
|
|
|
|
WinNTLMAuthenticationSid = 51,
|
|
|
|
WinDigestAuthenticationSid = 52,
|
|
|
|
WinSChannelAuthenticationSid = 53,
|
|
|
|
WinThisOrganizationSid = 54,
|
|
|
|
WinOtherOrganizationSid = 55,
|
|
|
|
WinBuiltinIncomingForestTrustBuildersSid = 56,
|
|
|
|
WinBuiltinPerfMonitoringUsersSid = 57,
|
|
|
|
WinBuiltinPerfLoggingUsersSid = 58,
|
|
|
|
WinBuiltinAuthorizationAccessSid = 59,
|
|
|
|
WinBuiltinTerminalServerLicenseServersSid = 60,
|
|
|
|
WinBuiltinDCOMUsersSid = 61,
|
|
|
|
WinBuiltinIUsersSid = 62,
|
|
|
|
WinIUserSid = 63,
|
|
|
|
WinBuiltinCryptoOperatorsSid = 64,
|
|
|
|
WinUntrustedLabelSid = 65,
|
|
|
|
WinLowLabelSid = 66,
|
|
|
|
WinMediumLabelSid = 67,
|
|
|
|
WinHighLabelSid = 68,
|
|
|
|
WinSystemLabelSid = 69,
|
|
|
|
WinWriteRestrictedCodeSid = 70,
|
|
|
|
WinCreatorOwnerRightsSid = 71,
|
|
|
|
WinCacheablePrincipalsGroupSid = 72,
|
|
|
|
WinNonCacheablePrincipalsGroupSid = 73,
|
|
|
|
WinEnterpriseReadonlyControllersSid = 74,
|
|
|
|
WinAccountReadonlyControllersSid = 75,
|
|
|
|
WinBuiltinEventLogReadersGroup = 76,
|
|
|
|
WinNewEnterpriseReadonlyControllersSid = 77,
|
|
|
|
WinBuiltinCertSvcDComAccessGroup = 78,
|
|
|
|
WinMediumPlusLabelSid = 79,
|
|
|
|
WinLocalLogonSid = 80,
|
|
|
|
WinConsoleLogonSid = 81,
|
|
|
|
WinThisOrganizationCertificateSid = 82,
|
2005-07-27 01:31:34 +00:00
|
|
|
} WELL_KNOWN_SID_TYPE;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define SE_CREATE_TOKEN_NAME TEXT("SeCreateTokenPrivilege")
|
|
|
|
#define SE_ASSIGNPRIMARYTOKEN_NAME TEXT("SeAssignPrimaryTokenPrivilege")
|
|
|
|
#define SE_LOCK_MEMORY_NAME TEXT("SeLockMemoryPrivilege")
|
|
|
|
#define SE_INCREASE_QUOTA_NAME TEXT("SeIncreaseQuotaPrivilege")
|
|
|
|
#define SE_UNSOLICITED_INPUT_NAME TEXT("SeUnsolicitedInputPrivilege")
|
|
|
|
#define SE_MACHINE_ACCOUNT_NAME TEXT("SeMachineAccountPrivilege")
|
|
|
|
#define SE_TCB_NAME TEXT("SeTcbPrivilege")
|
|
|
|
#define SE_SECURITY_NAME TEXT("SeSecurityPrivilege")
|
|
|
|
#define SE_TAKE_OWNERSHIP_NAME TEXT("SeTakeOwnershipPrivilege")
|
|
|
|
#define SE_LOAD_DRIVER_NAME TEXT("SeLoadDriverPrivilege")
|
|
|
|
#define SE_SYSTEM_PROFILE_NAME TEXT("SeSystemProfilePrivilege")
|
|
|
|
#define SE_SYSTEMTIME_NAME TEXT("SeSystemtimePrivilege")
|
|
|
|
#define SE_PROF_SINGLE_PROCESS_NAME TEXT("SeProfileSingleProcessPrivilege")
|
|
|
|
#define SE_INC_BASE_PRIORITY_NAME TEXT("SeIncreaseBasePriorityPrivilege")
|
|
|
|
#define SE_CREATE_PAGEFILE_NAME TEXT("SeCreatePagefilePrivilege")
|
|
|
|
#define SE_CREATE_PERMANENT_NAME TEXT("SeCreatePermanentPrivilege")
|
|
|
|
#define SE_BACKUP_NAME TEXT("SeBackupPrivilege")
|
|
|
|
#define SE_RESTORE_NAME TEXT("SeRestorePrivilege")
|
|
|
|
#define SE_SHUTDOWN_NAME TEXT("SeShutdownPrivilege")
|
|
|
|
#define SE_DEBUG_NAME TEXT("SeDebugPrivilege")
|
|
|
|
#define SE_AUDIT_NAME TEXT("SeAuditPrivilege")
|
|
|
|
#define SE_SYSTEM_ENVIRONMENT_NAME TEXT("SeSystemEnvironmentPrivilege")
|
|
|
|
#define SE_CHANGE_NOTIFY_NAME TEXT("SeChangeNotifyPrivilege")
|
|
|
|
#define SE_REMOTE_SHUTDOWN_NAME TEXT("SeRemoteShutdownPrivilege")
|
2010-07-31 07:09:40 +00:00
|
|
|
#define SE_UNDOCK_NAME TEXT("SeUndockPrivilege")
|
|
|
|
#define SE_SYNC_AGENT_NAME TEXT("SeSyncAgentPrivilege")
|
|
|
|
#define SE_ENABLE_DELEGATION_NAME TEXT("SeEnableDelegationPrivilege")
|
|
|
|
#define SE_MANAGE_VOLUME_NAME TEXT("SeManageVolumePrivilege")
|
|
|
|
#define SE_IMPERSONATE_NAME TEXT("SeImpersonatePrivilege")
|
|
|
|
#define SE_CREATE_GLOBAL_NAME TEXT("SeCreateGlobalPrivilege")
|
2005-05-08 17:44:37 +00:00
|
|
|
#define SE_GROUP_MANDATORY 1
|
|
|
|
#define SE_GROUP_ENABLED_BY_DEFAULT 2
|
|
|
|
#define SE_GROUP_ENABLED 4
|
|
|
|
#define SE_GROUP_OWNER 8
|
|
|
|
#define SE_GROUP_USE_FOR_DENY_ONLY 16
|
|
|
|
#define SE_GROUP_LOGON_ID 3221225472U
|
|
|
|
#define SE_GROUP_RESOURCE 536870912
|
2007-07-09 11:05:06 +00:00
|
|
|
#define LANG_NEUTRAL 0x00
|
|
|
|
#define LANG_INVARIANT 0x7f
|
|
|
|
#define LANG_AFRIKAANS 0x36
|
|
|
|
#define LANG_ALBANIAN 0x1c
|
|
|
|
#define LANG_ALSATIAN 0x84
|
|
|
|
#define LANG_AMHARIC 0x5e
|
|
|
|
#define LANG_ARABIC 0x01
|
|
|
|
#define LANG_ARMENIAN 0x2b
|
|
|
|
#define LANG_ASSAMESE 0x4d
|
|
|
|
#define LANG_AZERI 0x2c
|
|
|
|
#define LANG_BASHKIR 0x6d
|
|
|
|
#define LANG_BASQUE 0x2d
|
|
|
|
#define LANG_BELARUSIAN 0x23
|
|
|
|
#define LANG_BENGALI 0x45
|
|
|
|
#define LANG_BOSNIAN 0x1a
|
|
|
|
#define LANG_BRETON 0x7e
|
|
|
|
#define LANG_BULGARIAN 0x02
|
|
|
|
#define LANG_CATALAN 0x03
|
|
|
|
#define LANG_CHINESE 0x04
|
|
|
|
#define LANG_CHINESE_SIMPLIFIED 0x04
|
|
|
|
#define LANG_CORSICAN 0x83
|
|
|
|
#define LANG_CROATIAN 0x1a
|
|
|
|
#define LANG_CROATIAN 0x1a
|
|
|
|
#define LANG_CZECH 0x05
|
|
|
|
#define LANG_DANISH 0x06
|
|
|
|
#define LANG_DARI 0x8c
|
|
|
|
#define LANG_DIVEHI 0x65
|
|
|
|
#define LANG_DUTCH 0x13
|
|
|
|
#define LANG_ENGLISH 0x09
|
|
|
|
#define LANG_ESTONIAN 0x25
|
|
|
|
#define LANG_FAEROESE 0x38
|
|
|
|
#define LANG_FILIPINO 0x64
|
|
|
|
#define LANG_FINNISH 0x0b
|
|
|
|
#define LANG_FRENCH 0x0c
|
|
|
|
#define LANG_FRISIAN 0x62
|
|
|
|
#define LANG_GALICIAN 0x56
|
|
|
|
#define LANG_GEORGIAN 0x37
|
|
|
|
#define LANG_GERMAN 0x07
|
|
|
|
#define LANG_GREEK 0x08
|
|
|
|
#define LANG_GREENLANDIC 0x6f
|
|
|
|
#define LANG_GUJARATI 0x47
|
|
|
|
#define LANG_HAUSA 0x68
|
|
|
|
#define LANG_HEBREW 0x0d
|
|
|
|
#define LANG_HINDI 0x39
|
|
|
|
#define LANG_HUNGARIAN 0x0e
|
|
|
|
#define LANG_ICELANDIC 0x0f
|
|
|
|
#define LANG_IGBO 0x70
|
|
|
|
#define LANG_INDONESIAN 0x21
|
|
|
|
#define LANG_INUKTITUT 0x5d
|
|
|
|
#define LANG_IRISH 0x3c
|
|
|
|
#define LANG_ITALIAN 0x10
|
|
|
|
#define LANG_JAPANESE 0x11
|
|
|
|
#define LANG_KANNADA 0x4b
|
|
|
|
#define LANG_KASHMIRI 0x60
|
|
|
|
#define LANG_KAZAK 0x3f
|
|
|
|
#define LANG_KHMER 0x53
|
|
|
|
#define LANG_KICHE 0x86
|
|
|
|
#define LANG_KINYARWANDA 0x87
|
|
|
|
#define LANG_KONKANI 0x57
|
|
|
|
#define LANG_KOREAN 0x12
|
|
|
|
#define LANG_KYRGYZ 0x40
|
|
|
|
#define LANG_LAO 0x54
|
|
|
|
#define LANG_LATVIAN 0x26
|
|
|
|
#define LANG_LITHUANIAN 0x27
|
|
|
|
#define LANG_LOWER_SORBIAN 0x2e
|
|
|
|
#define LANG_LUXEMBOURGISH 0x6e
|
|
|
|
#define LANG_MACEDONIAN 0x2f
|
|
|
|
#define LANG_MALAY 0x3e
|
|
|
|
#define LANG_MALAYALAM 0x4c
|
|
|
|
#define LANG_MALTESE 0x3a
|
|
|
|
#define LANG_MANIPURI 0x58
|
|
|
|
#define LANG_MAORI 0x81
|
|
|
|
#define LANG_MAPUDUNGUN 0x7a
|
|
|
|
#define LANG_MARATHI 0x4e
|
|
|
|
#define LANG_MOHAWK 0x7c
|
|
|
|
#define LANG_MONGOLIAN 0x50
|
|
|
|
#define LANG_NEPALI 0x61
|
|
|
|
#define LANG_NORWEGIAN 0x14
|
|
|
|
#define LANG_OCCITAN 0x82
|
|
|
|
#define LANG_ORIYA 0x48
|
|
|
|
#define LANG_PASHTO 0x63
|
|
|
|
#define LANG_FARSI 0x29
|
|
|
|
#define LANG_POLISH 0x15
|
|
|
|
#define LANG_PORTUGUESE 0x16
|
|
|
|
#define LANG_PUNJABI 0x46
|
|
|
|
#define LANG_QUECHUA 0x6b
|
|
|
|
#define LANG_ROMANIAN 0x18
|
|
|
|
#define LANG_ROMANSH 0x17
|
|
|
|
#define LANG_RUSSIAN 0x19
|
|
|
|
#define LANG_SAMI 0x3b
|
|
|
|
#define LANG_SANSKRIT 0x4f
|
|
|
|
#define LANG_SERBIAN 0x1a
|
|
|
|
#define LANG_SOTHO 0x6c
|
|
|
|
#define LANG_TSWANA 0x32
|
|
|
|
#define LANG_SINDHI 0x59
|
|
|
|
#define LANG_SINHALESE 0x5b
|
|
|
|
#define LANG_SLOVAK 0x1b
|
|
|
|
#define LANG_SLOVENIAN 0x24
|
|
|
|
#define LANG_SPANISH 0x0a
|
|
|
|
#define LANG_SWAHILI 0x41
|
|
|
|
#define LANG_SWEDISH 0x1d
|
|
|
|
#define LANG_SYRIAC 0x5a
|
|
|
|
#define LANG_TAJIK 0x28
|
|
|
|
#define LANG_TAMAZIGHT 0x5f
|
|
|
|
#define LANG_TAMIL 0x49
|
|
|
|
#define LANG_TATAR 0x44
|
|
|
|
#define LANG_TELUGU 0x4a
|
|
|
|
#define LANG_THAI 0x1e
|
|
|
|
#define LANG_TIBETAN 0x51
|
|
|
|
#define LANG_TIGRIGNA 0x73
|
|
|
|
#define LANG_TURKISH 0x1f
|
|
|
|
#define LANG_TURKMEN 0x42
|
|
|
|
#define LANG_UIGHUR 0x80
|
|
|
|
#define LANG_UKRAINIAN 0x22
|
|
|
|
#define LANG_UPPER_SORBIAN 0x2e
|
|
|
|
#define LANG_URDU 0x20
|
|
|
|
#define LANG_UZBEK 0x43
|
|
|
|
#define LANG_VIETNAMESE 0x2a
|
|
|
|
#define LANG_WELSH 0x52
|
|
|
|
#define LANG_WOLOF 0x88
|
|
|
|
#define LANG_XHOSA 0x34
|
|
|
|
#define LANG_YAKUT 0x85
|
|
|
|
#define LANG_YI 0x78
|
|
|
|
#define LANG_YORUBA 0x6a
|
|
|
|
#define LANG_ZULU 0x35
|
2009-06-27 19:06:00 +00:00
|
|
|
|
2009-08-04 18:34:06 +00:00
|
|
|
/* FIXME: non-standard */
|
2009-06-27 19:06:00 +00:00
|
|
|
#define LANG_ESPERANTO 0x8f
|
|
|
|
#define LANG_WALON 0x90
|
|
|
|
#define LANG_CORNISH 0x91
|
|
|
|
|
2009-08-04 18:34:06 +00:00
|
|
|
/* FIXME: not present in the official headers */
|
2009-06-27 19:06:00 +00:00
|
|
|
#define LANG_GAELIC 0x94
|
|
|
|
#define LANG_SAAMI 0x3b
|
|
|
|
#define LANG_SUTU 0x30
|
|
|
|
#define LANG_TSONGA 0x31
|
|
|
|
#define LANG_VENDA 0x33
|
|
|
|
|
2007-07-09 11:05:06 +00:00
|
|
|
#define SUBLANG_CUSTOM_UNSPECIFIED 0x04
|
|
|
|
#define SUBLANG_CUSTOM_DEFAULT 0x03
|
|
|
|
#define SUBLANG_UI_CUSTOM_DEFAULT 0x05
|
|
|
|
#define SUBLANG_NEUTRAL 0x00
|
|
|
|
#define SUBLANG_SYS_DEFAULT 0x02
|
|
|
|
#define SUBLANG_DEFAULT 0x01
|
|
|
|
#define SUBLANG_AFRIKAANS_SOUTH_AFRICA 0x01
|
|
|
|
#define SUBLANG_ALBANIAN_ALBANIA 0x01
|
|
|
|
#define SUBLANG_ALSATIAN_FRANCE 0x01
|
|
|
|
#define SUBLANG_AMHARIC_ETHIOPIA 0x01
|
|
|
|
#define SUBLANG_ARABIC_ALGERIA 0x05
|
|
|
|
#define SUBLANG_ARABIC_BAHRAIN 0x0f
|
|
|
|
#define SUBLANG_ARABIC_EGYPT 0x03
|
|
|
|
#define SUBLANG_ARABIC_IRAQ 0x02
|
|
|
|
#define SUBLANG_ARABIC_JORDAN 0x0b
|
|
|
|
#define SUBLANG_ARABIC_KUWAIT 0x0d
|
|
|
|
#define SUBLANG_ARABIC_LEBANON 0x0c
|
|
|
|
#define SUBLANG_ARABIC_LIBYA 0x04
|
|
|
|
#define SUBLANG_ARABIC_MOROCCO 0x06
|
|
|
|
#define SUBLANG_ARABIC_OMAN 0x08
|
|
|
|
#define SUBLANG_ARABIC_QATAR 0x10
|
|
|
|
#define SUBLANG_ARABIC_SAUDI_ARABIA 0x01
|
|
|
|
#define SUBLANG_ARABIC_SYRIA 0x0a
|
|
|
|
#define SUBLANG_ARABIC_TUNISIA 0x07
|
|
|
|
#define SUBLANG_ARABIC_UAE 0x0e
|
|
|
|
#define SUBLANG_ARABIC_YEMEN 0x09
|
|
|
|
#define SUBLANG_ARMENIAN_ARMENIA 0x01
|
|
|
|
#define SUBLANG_ASSAMESE_INDIA 0x01
|
|
|
|
#define SUBLANG_AZERI_CYRILLIC 0x02
|
|
|
|
#define SUBLANG_AZERI_LATIN 0x01
|
|
|
|
#define SUBLANG_BASHKIR_RUSSIA 0x01
|
|
|
|
#define SUBLANG_BASQUE_BASQUE 0x01
|
|
|
|
#define SUBLANG_BELARUSIAN_BELARUS 0x01
|
|
|
|
#define SUBLANG_BENGALI_BANGLADESH 0x02
|
|
|
|
#define SUBLANG_BENGALI_INDIA 0x01
|
|
|
|
#define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC 0x08
|
|
|
|
#define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN 0x05
|
|
|
|
#define SUBLANG_BRETON_FRANCE 0x01
|
|
|
|
#define SUBLANG_BULGARIAN_BULGARIA 0x01
|
|
|
|
#define SUBLANG_CATALAN_CATALAN 0x01
|
|
|
|
#define SUBLANG_CHINESE_HONGKONG 0x03
|
|
|
|
#define SUBLANG_CHINESE_MACAU 0x05
|
|
|
|
#define SUBLANG_CHINESE_SINGAPORE 0x04
|
|
|
|
#define SUBLANG_CHINESE_SIMPLIFIED 0x02
|
|
|
|
#define SUBLANG_CHINESE_TRADITIONAL 0x01
|
|
|
|
#define SUBLANG_CORSICAN_FRANCE 0x01
|
|
|
|
#define SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN 0x04
|
|
|
|
#define SUBLANG_CROATIAN_CROATIA 0x01
|
|
|
|
#define SUBLANG_CZECH_CZECH_REPUBLIC 0x01
|
|
|
|
#define SUBLANG_DANISH_DENMARK 0x01
|
|
|
|
#define SUBLANG_DARI_AFGHANISTAN 0x01
|
|
|
|
#define SUBLANG_DIVEHI_MALDIVES 0x01
|
|
|
|
#define SUBLANG_DUTCH_BELGIAN 0x02
|
|
|
|
#define SUBLANG_DUTCH 0x01
|
|
|
|
#define SUBLANG_ENGLISH_AUS 0x03
|
|
|
|
#define SUBLANG_ENGLISH_BELIZE 0x0a
|
|
|
|
#define SUBLANG_ENGLISH_CAN 0x04
|
|
|
|
#define SUBLANG_ENGLISH_CARIBBEAN 0x09
|
|
|
|
#define SUBLANG_ENGLISH_INDIA 0x10
|
|
|
|
#define SUBLANG_ENGLISH_EIRE 0x06
|
|
|
|
#define SUBLANG_ENGLISH_IRELAND 0x06
|
|
|
|
#define SUBLANG_ENGLISH_JAMAICA 0x08
|
|
|
|
#define SUBLANG_ENGLISH_MALAYSIA 0x11
|
|
|
|
#define SUBLANG_ENGLISH_NZ 0x05
|
|
|
|
#define SUBLANG_ENGLISH_PHILIPPINES 0x0d
|
|
|
|
#define SUBLANG_ENGLISH_SINGAPORE 0x12
|
|
|
|
#define SUBLANG_ENGLISH_SOUTH_AFRICA 0x07
|
|
|
|
#define SUBLANG_ENGLISH_TRINIDAD 0x0b
|
|
|
|
#define SUBLANG_ENGLISH_UK 0x02
|
|
|
|
#define SUBLANG_ENGLISH_US 0x01
|
|
|
|
#define SUBLANG_ENGLISH_ZIMBABWE 0x0c
|
|
|
|
#define SUBLANG_ESTONIAN_ESTONIA 0x01
|
|
|
|
#define SUBLANG_FAEROESE_FAROE_ISLANDS 0x01
|
|
|
|
#define SUBLANG_FILIPINO_PHILIPPINES 0x01
|
|
|
|
#define SUBLANG_FINNISH_FINLAND 0x01
|
|
|
|
#define SUBLANG_FRENCH_BELGIAN 0x02
|
|
|
|
#define SUBLANG_FRENCH_CANADIAN 0x03
|
|
|
|
#define SUBLANG_FRENCH 0x01
|
|
|
|
#define SUBLANG_FRENCH_LUXEMBOURG 0x05
|
|
|
|
#define SUBLANG_FRENCH_MONACO 0x06
|
|
|
|
#define SUBLANG_FRENCH_SWISS 0x04
|
|
|
|
#define SUBLANG_FRISIAN_NETHERLANDS 0x01
|
|
|
|
#define SUBLANG_GALICIAN_GALICIAN 0x01
|
|
|
|
#define SUBLANG_GEORGIAN_GEORGIA 0x01
|
|
|
|
#define SUBLANG_GERMAN_AUSTRIAN 0x03
|
|
|
|
#define SUBLANG_GERMAN 0x01
|
|
|
|
#define SUBLANG_GERMAN_LIECHTENSTEIN 0x05
|
|
|
|
#define SUBLANG_GERMAN_LUXEMBOURG 0x04
|
|
|
|
#define SUBLANG_GERMAN_SWISS 0x02
|
|
|
|
#define SUBLANG_GREEK_GREECE 0x01
|
|
|
|
#define SUBLANG_GREENLANDIC_GREENLAND 0x01
|
|
|
|
#define SUBLANG_GUJARATI_INDIA 0x01
|
|
|
|
#define SUBLANG_HAUSA_NIGERIA_LATIN 0x01
|
2010-07-05 23:00:19 +00:00
|
|
|
#define SUBLANG_HAUSA_NIGERIA 0x01
|
2007-07-09 11:05:06 +00:00
|
|
|
#define SUBLANG_HEBREW_ISRAEL 0x01
|
|
|
|
#define SUBLANG_HINDI_INDIA 0x01
|
|
|
|
#define SUBLANG_HUNGARIAN_HUNGARY 0x01
|
|
|
|
#define SUBLANG_ICELANDIC_ICELAND 0x01
|
|
|
|
#define SUBLANG_IGBO_NIGERIA 0x01
|
|
|
|
#define SUBLANG_INDONESIAN_INDONESIA 0x01
|
|
|
|
#define SUBLANG_INUKTITUT_CANADA_LATIN 0x02
|
|
|
|
#define SUBLANG_INUKTITUT_CANADA 0x01
|
|
|
|
#define SUBLANG_IRISH_IRELAND 0x02
|
|
|
|
#define SUBLANG_ITALIAN 0x01
|
|
|
|
#define SUBLANG_ITALIAN_SWISS 0x02
|
|
|
|
#define SUBLANG_JAPANESE_JAPAN 0x01
|
|
|
|
#define SUBLANG_KANNADA_INDIA 0x01
|
|
|
|
#define SUBLANG_KASHMIRI_INDIA 0x02
|
|
|
|
#define SUBLANG_KASHMIRI_SASIA 0x02
|
|
|
|
#define SUBLANG_KAZAK_KAZAKHSTAN 0x01
|
|
|
|
#define SUBLANG_KHMER_CAMBODIA 0x01
|
|
|
|
#define SUBLANG_KICHE_GUATEMALA 0x01
|
|
|
|
#define SUBLANG_KINYARWANDA_RWANDA 0x01
|
|
|
|
#define SUBLANG_KONKANI_INDIA 0x01
|
|
|
|
#define SUBLANG_KOREAN 0x01
|
|
|
|
#define SUBLANG_KYRGYZ_KYRGYZSTAN 0x01
|
|
|
|
#define SUBLANG_LAO_LAO 0x01
|
2010-07-05 23:00:19 +00:00
|
|
|
#define SUBLANG_LAO_LAO_PDR 0x01
|
2007-07-09 11:05:06 +00:00
|
|
|
#define SUBLANG_LATVIAN_LATVIA 0x01
|
|
|
|
#define SUBLANG_LITHUANIAN_LITHUANIA 0x01
|
2010-07-05 23:00:19 +00:00
|
|
|
#define SUBLANG_LITHUANIAN 0x01
|
2007-07-09 11:05:06 +00:00
|
|
|
#define SUBLANG_LOWER_SORBIAN_GERMANY 0x02
|
|
|
|
#define SUBLANG_LUXEMBOURGISH_LUXEMBOURG 0x01
|
|
|
|
#define SUBLANG_MACEDONIAN_MACEDONIA 0x01
|
|
|
|
#define SUBLANG_MALAY_BRUNEI_DARUSSALAM 0x02
|
|
|
|
#define SUBLANG_MALAY_MALAYSIA 0x01
|
|
|
|
#define SUBLANG_MALAYALAM_INDIA 0x01
|
|
|
|
#define SUBLANG_MALTESE_MALTA 0x01
|
|
|
|
#define SUBLANG_MAORI_NEW_ZEALAND 0x01
|
|
|
|
#define SUBLANG_MAPUDUNGUN_CHILE 0x01
|
|
|
|
#define SUBLANG_MARATHI_INDIA 0x01
|
|
|
|
#define SUBLANG_MOHAWK_MOHAWK 0x01
|
|
|
|
#define SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA 0x01
|
|
|
|
#define SUBLANG_MONGOLIAN_PRC 0x02
|
|
|
|
#define SUBLANG_NEPALI_NEPAL 0x01
|
|
|
|
#define SUBLANG_NEPALI_INDIA 0x02
|
|
|
|
#define SUBLANG_NORWEGIAN_BOKMAL 0x01
|
|
|
|
#define SUBLANG_NORWEGIAN_NYNORSK 0x02
|
|
|
|
#define SUBLANG_OCCITAN_FRANCE 0x01
|
|
|
|
#define SUBLANG_ORIYA_INDIA 0x01
|
|
|
|
#define SUBLANG_PASHTO_AFGHANISTAN 0x01
|
|
|
|
#define SUBLANG_PERSIAN_IRAN 0x01
|
|
|
|
#define SUBLANG_POLISH_POLAND 0x01
|
|
|
|
#define SUBLANG_PORTUGUESE_BRAZILIAN 0x01
|
|
|
|
#define SUBLANG_PORTUGUESE 0x02
|
|
|
|
#define SUBLANG_PORTUGUESE_PORTUGAL 0x02
|
|
|
|
#define SUBLANG_PUNJABI_INDIA 0x01
|
|
|
|
#define SUBLANG_QUECHUA_BOLIVIA 0x01
|
|
|
|
#define SUBLANG_QUECHUA_ECUADOR 0x02
|
|
|
|
#define SUBLANG_QUECHUA_PERU 0x03
|
|
|
|
#define SUBLANG_ROMANIAN_ROMANIA 0x01
|
|
|
|
#define SUBLANG_ROMANSH_SWITZERLAND 0x01
|
|
|
|
#define SUBLANG_RUSSIAN_RUSSIA 0x01
|
|
|
|
#define SUBLANG_SAMI_INARI_FINLAND 0x09
|
|
|
|
#define SUBLANG_SAMI_LULE_NORWAY 0x04
|
|
|
|
#define SUBLANG_SAMI_LULE_SWEDEN 0x05
|
|
|
|
#define SUBLANG_SAMI_NORTHERN_FINLAND 0x03
|
|
|
|
#define SUBLANG_SAMI_NORTHERN_NORWAY 0x01
|
|
|
|
#define SUBLANG_SAMI_NORTHERN_SWEDEN 0x02
|
|
|
|
#define SUBLANG_SAMI_SKOLT_FINLAND 0x08
|
|
|
|
#define SUBLANG_SAMI_SOUTHERN_NORWAY 0x06
|
|
|
|
#define SUBLANG_SAMI_SOUTHERN_SWEDEN 0x07
|
|
|
|
#define SUBLANG_SANSKRIT_INDIA 0x01
|
|
|
|
#define SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC 0x07
|
|
|
|
#define SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN 0x06
|
|
|
|
#define SUBLANG_SERBIAN_CROATIA 0x01
|
|
|
|
#define SUBLANG_SERBIAN_CYRILLIC 0x03
|
|
|
|
#define SUBLANG_SERBIAN_LATIN 0x02
|
|
|
|
#define SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA 0x01
|
|
|
|
#define SUBLANG_TSWANA_SOUTH_AFRICA 0x01
|
|
|
|
#define SUBLANG_SINDHI_AFGHANISTAN 0x02
|
|
|
|
#define SUBLANG_SINDHI_PAKISTAN 0x01
|
|
|
|
#define SUBLANG_SINHALESE_SRI_LANKA 0x01
|
|
|
|
#define SUBLANG_SLOVAK_SLOVAKIA 0x01
|
|
|
|
#define SUBLANG_SLOVENIAN_SLOVENIA 0x01
|
|
|
|
#define SUBLANG_SPANISH_ARGENTINA 0x0b
|
|
|
|
#define SUBLANG_SPANISH_BOLIVIA 0x10
|
|
|
|
#define SUBLANG_SPANISH_CHILE 0x0d
|
|
|
|
#define SUBLANG_SPANISH_COLOMBIA 0x09
|
|
|
|
#define SUBLANG_SPANISH_COSTA_RICA 0x05
|
|
|
|
#define SUBLANG_SPANISH_DOMINICAN_REPUBLIC 0x07
|
|
|
|
#define SUBLANG_SPANISH_ECUADOR 0x0c
|
|
|
|
#define SUBLANG_SPANISH_EL_SALVADOR 0x11
|
|
|
|
#define SUBLANG_SPANISH_GUATEMALA 0x04
|
|
|
|
#define SUBLANG_SPANISH_HONDURAS 0x12
|
|
|
|
#define SUBLANG_SPANISH_MEXICAN 0x02
|
2007-07-09 12:21:08 +00:00
|
|
|
#define SUBLANG_SPANISH_MODERN 0x03
|
2007-07-09 11:05:06 +00:00
|
|
|
#define SUBLANG_SPANISH_NICARAGUA 0x13
|
|
|
|
#define SUBLANG_SPANISH_PANAMA 0x06
|
|
|
|
#define SUBLANG_SPANISH_PARAGUAY 0x0f
|
|
|
|
#define SUBLANG_SPANISH_PERU 0x0a
|
|
|
|
#define SUBLANG_SPANISH_PUERTO_RICO 0x14
|
|
|
|
#define SUBLANG_SPANISH 0x01
|
|
|
|
#define SUBLANG_SPANISH_US 0x15
|
|
|
|
#define SUBLANG_SPANISH_URUGUAY 0x0e
|
|
|
|
#define SUBLANG_SPANISH_VENEZUELA 0x08
|
|
|
|
#define SUBLANG_SWAHILI 0x01
|
2010-07-05 23:00:19 +00:00
|
|
|
#define SUBLANG_SWAHILI_KENYA 0x01
|
2007-07-09 11:05:06 +00:00
|
|
|
#define SUBLANG_SWEDISH_FINLAND 0x02
|
|
|
|
#define SUBLANG_SWEDISH 0x01
|
|
|
|
#define SUBLANG_SWEDISH_SWEDEN 0x01
|
|
|
|
#define SUBLANG_SYRIAC 0x01
|
|
|
|
#define SUBLANG_TAJIK_TAJIKISTAN 0x01
|
|
|
|
#define SUBLANG_TAMAZIGHT_ALGERIA_LATIN 0x02
|
|
|
|
#define SUBLANG_TAMIL_INDIA 0x01
|
|
|
|
#define SUBLANG_TATAR_RUSSIA 0x01
|
|
|
|
#define SUBLANG_TELUGU_INDIA 0x01
|
|
|
|
#define SUBLANG_THAI_THAILAND 0x01
|
|
|
|
#define SUBLANG_TIBETAN_PRC 0x01
|
|
|
|
#define SUBLANG_TIGRIGNA_ERITREA 0x02
|
|
|
|
#define SUBLANG_TURKISH_TURKEY 0x01
|
|
|
|
#define SUBLANG_TURKMEN_TURKMENISTAN 0x01
|
|
|
|
#define SUBLANG_UIGHUR_PRC 0x01
|
|
|
|
#define SUBLANG_UKRAINIAN_UKRAINE 0x01
|
|
|
|
#define SUBLANG_UPPER_SORBIAN_GERMANY 0x01
|
|
|
|
#define SUBLANG_URDU_INDIA 0x02
|
|
|
|
#define SUBLANG_URDU_PAKISTAN 0x01
|
|
|
|
#define SUBLANG_UZBEK_CYRILLIC 0x02
|
|
|
|
#define SUBLANG_UZBEK_LATIN 0x01
|
|
|
|
#define SUBLANG_VIETNAMESE_VIETNAM 0x01
|
|
|
|
#define SUBLANG_WELSH_UNITED_KINGDOM 0x01
|
|
|
|
#define SUBLANG_WOLOF_SENEGAL 0x01
|
|
|
|
#define SUBLANG_XHOSA_SOUTH_AFRICA 0x01
|
|
|
|
#define SUBLANG_YAKUT_RUSSIA 0x01
|
|
|
|
#define SUBLANG_YI_PRC 0x01
|
|
|
|
#define SUBLANG_YORUBA_NIGERIA 0x01
|
|
|
|
#define SUBLANG_ZULU_SOUTH_AFRICA 0x01
|
2005-05-08 17:44:37 +00:00
|
|
|
#define NLS_VALID_LOCALE_MASK 1048575
|
|
|
|
#define SORT_DEFAULT 0
|
|
|
|
#define SORT_JAPANESE_XJIS 0
|
|
|
|
#define SORT_JAPANESE_UNICODE 1
|
|
|
|
#define SORT_CHINESE_BIG5 0
|
|
|
|
#define SORT_CHINESE_PRCP 0
|
|
|
|
#define SORT_CHINESE_UNICODE 1
|
|
|
|
#define SORT_CHINESE_PRC 2
|
|
|
|
#define SORT_CHINESE_BOPOMOFO 3
|
|
|
|
#define SORT_KOREAN_KSC 0
|
|
|
|
#define SORT_KOREAN_UNICODE 1
|
|
|
|
#define SORT_GERMAN_PHONE_BOOK 1
|
|
|
|
#define SORT_HUNGARIAN_DEFAULT 0
|
|
|
|
#define SORT_HUNGARIAN_TECHNICAL 1
|
|
|
|
#define SORT_GEORGIAN_TRADITIONAL 0
|
|
|
|
#define SORT_GEORGIAN_MODERN 1
|
|
|
|
#define MAKELANGID(p,s) ((((WORD)(s))<<10)|(WORD)(p))
|
|
|
|
#define MAKELCID(l,s) ((DWORD)((((DWORD)((WORD)(s)))<<16)|((DWORD)((WORD)(l)))))
|
|
|
|
#define PRIMARYLANGID(l) ((WORD)(l)&0x3ff)
|
|
|
|
#define SORTIDFROMLCID(l) ((WORD)((((DWORD)(l))&NLS_VALID_LOCALE_MASK)>>16))
|
|
|
|
#define SORTVERSIONFROMLCID(l) ((WORD)((((DWORD)(l))>>20)&0xf))
|
|
|
|
#define SUBLANGID(l) ((WORD)(l)>>10)
|
|
|
|
#define LANGIDFROMLCID(l) ((WORD)(l))
|
|
|
|
#define LANG_SYSTEM_DEFAULT MAKELANGID(LANG_NEUTRAL,SUBLANG_SYS_DEFAULT)
|
|
|
|
#define LANG_USER_DEFAULT MAKELANGID(LANG_NEUTRAL,SUBLANG_DEFAULT)
|
|
|
|
#define LOCALE_NEUTRAL MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_NEUTRAL),SORT_DEFAULT)
|
2010-02-18 15:04:54 +00:00
|
|
|
#define LOCALE_INVARIANT MAKELCID(MAKELANGID(LANG_INVARIANT, SUBLANG_NEUTRAL), SORT_DEFAULT)
|
2005-05-08 17:44:37 +00:00
|
|
|
#define ACL_REVISION 2
|
|
|
|
#define ACL_REVISION_DS 4
|
|
|
|
#define ACL_REVISION1 1
|
|
|
|
#define ACL_REVISION2 2
|
|
|
|
#define ACL_REVISION3 3
|
|
|
|
#define ACL_REVISION4 4
|
|
|
|
#define MIN_ACL_REVISION 2
|
|
|
|
#define MAX_ACL_REVISION 4
|
|
|
|
#define MINCHAR 0x80
|
|
|
|
#define MAXCHAR 0x7f
|
|
|
|
#define MINSHORT 0x8000
|
|
|
|
#define MAXSHORT 0x7fff
|
|
|
|
#define MINLONG 0x80000000
|
|
|
|
#define MAXLONG 0x7fffffff
|
|
|
|
#define MAXBYTE 0xff
|
|
|
|
#define MAXWORD 0xffff
|
|
|
|
#define MAXDWORD 0xffffffff
|
|
|
|
#define PROCESSOR_INTEL_386 386
|
|
|
|
#define PROCESSOR_INTEL_486 486
|
|
|
|
#define PROCESSOR_INTEL_PENTIUM 586
|
|
|
|
#define PROCESSOR_MIPS_R4000 4000
|
|
|
|
#define PROCESSOR_ALPHA_21064 21064
|
|
|
|
#define PROCESSOR_INTEL_IA64 2200
|
2005-05-08 18:02:41 +00:00
|
|
|
#define PROCESSOR_PPC_601 601
|
|
|
|
#define PROCESSOR_PPC_603 603
|
|
|
|
#define PROCESSOR_PPC_604 604
|
|
|
|
#define PROCESSOR_PPC_620 620
|
Sync aclui, advapi32, atl, authz, kernel32, msi, oledlg, powrprof, qmgr, riched20, samlib to Wine 1.2rc5
Update some psdk Headers to get some more synched winetests build
svn path=/trunk/; revision=47930
2010-07-03 12:42:55 +00:00
|
|
|
#define PROCESSOR_INTEL_860 860
|
|
|
|
#define PROCESSOR_AMD_X8664 8664
|
|
|
|
#define PROCESSOR_MIPS_R2000 2000
|
|
|
|
#define PROCESSOR_MIPS_R3000 3000
|
|
|
|
#define PROCESSOR_HITACHI_SH3 10003
|
|
|
|
#define PROCESSOR_HITACHI_SH3E 10004
|
|
|
|
#define PROCESSOR_HITACHI_SH4 10005
|
|
|
|
#define PROCESSOR_MOTOROLA_821 821
|
|
|
|
#define PROCESSOR_SHx_SH3 103
|
|
|
|
#define PROCESSOR_SHx_SH4 104
|
|
|
|
#define PROCESSOR_STRONGARM 2577
|
|
|
|
#define PROCESSOR_ARM720 1824
|
|
|
|
#define PROCESSOR_ARM820 2080
|
|
|
|
#define PROCESSOR_ARM920 2336
|
|
|
|
#define PROCESSOR_ARM_7TDMI 70001
|
2005-05-08 17:44:37 +00:00
|
|
|
#define PROCESSOR_ARCHITECTURE_INTEL 0
|
|
|
|
#define PROCESSOR_ARCHITECTURE_MIPS 1
|
|
|
|
#define PROCESSOR_ARCHITECTURE_ALPHA 2
|
|
|
|
#define PROCESSOR_ARCHITECTURE_PPC 3
|
|
|
|
#define PROCESSOR_ARCHITECTURE_SHX 4
|
|
|
|
#define PROCESSOR_ARCHITECTURE_ARM 5
|
|
|
|
#define PROCESSOR_ARCHITECTURE_IA64 6
|
|
|
|
#define PROCESSOR_ARCHITECTURE_ALPHA64 7
|
2005-12-19 13:09:22 +00:00
|
|
|
#define PROCESSOR_ARCHITECTURE_MSIL 8
|
|
|
|
#define PROCESSOR_ARCHITECTURE_AMD64 9
|
2005-05-08 17:44:37 +00:00
|
|
|
#define PROCESSOR_ARCHITECTURE_UNKNOWN 0xFFFF
|
|
|
|
#define PF_FLOATING_POINT_PRECISION_ERRATA 0
|
|
|
|
#define PF_FLOATING_POINT_EMULATED 1
|
|
|
|
#define PF_COMPARE_EXCHANGE_DOUBLE 2
|
|
|
|
#define PF_MMX_INSTRUCTIONS_AVAILABLE 3
|
|
|
|
#define PF_PPC_MOVEMEM_64BIT_OK 4
|
|
|
|
#define PF_ALPHA_BYTE_INSTRUCTIONS 5
|
|
|
|
#define PF_XMMI_INSTRUCTIONS_AVAILABLE 6
|
|
|
|
#define PF_3DNOW_INSTRUCTIONS_AVAILABLE 7
|
|
|
|
#define PF_RDTSC_INSTRUCTION_AVAILABLE 8
|
|
|
|
#define PF_PAE_ENABLED 9
|
|
|
|
#define PF_XMMI64_INSTRUCTIONS_AVAILABLE 10
|
|
|
|
/* also in ddk/ntifs.h */
|
|
|
|
#define FILE_ACTION_ADDED 0x00000001
|
|
|
|
#define FILE_ACTION_REMOVED 0x00000002
|
|
|
|
#define FILE_ACTION_MODIFIED 0x00000003
|
|
|
|
#define FILE_ACTION_RENAMED_OLD_NAME 0x00000004
|
|
|
|
#define FILE_ACTION_RENAMED_NEW_NAME 0x00000005
|
|
|
|
#define FILE_ACTION_ADDED_STREAM 0x00000006
|
|
|
|
#define FILE_ACTION_REMOVED_STREAM 0x00000007
|
|
|
|
#define FILE_ACTION_MODIFIED_STREAM 0x00000008
|
|
|
|
#define FILE_ACTION_REMOVED_BY_DELETE 0x00000009
|
|
|
|
#define FILE_ACTION_ID_NOT_TUNNELLED 0x0000000A
|
|
|
|
#define FILE_ACTION_TUNNELLED_ID_COLLISION 0x0000000B
|
|
|
|
/* end ntifs.h */
|
|
|
|
#define HEAP_NO_SERIALIZE 1
|
|
|
|
#define HEAP_GROWABLE 2
|
|
|
|
#define HEAP_GENERATE_EXCEPTIONS 4
|
|
|
|
#define HEAP_ZERO_MEMORY 8
|
|
|
|
#define HEAP_REALLOC_IN_PLACE_ONLY 16
|
|
|
|
#define HEAP_TAIL_CHECKING_ENABLED 32
|
|
|
|
#define HEAP_FREE_CHECKING_ENABLED 64
|
|
|
|
#define HEAP_DISABLE_COALESCE_ON_FREE 128
|
2006-06-23 21:25:11 +00:00
|
|
|
#define HEAP_CREATE_ALIGN_16 0x10000
|
2005-05-08 17:44:37 +00:00
|
|
|
#define HEAP_CREATE_ENABLE_TRACING 0x20000
|
2007-01-02 10:25:51 +00:00
|
|
|
#define HEAP_CREATE_ENABLE_EXECUTE 0x00040000
|
2005-05-08 17:44:37 +00:00
|
|
|
#define HEAP_MAXIMUM_TAG 0xFFF
|
|
|
|
#define HEAP_PSEUDO_TAG_FLAG 0x8000
|
|
|
|
#define HEAP_TAG_SHIFT 16
|
|
|
|
#define HEAP_MAKE_TAG_FLAGS(b,o) ((DWORD)((b)+(o)<<16)))
|
2008-09-14 18:22:53 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define KEY_QUERY_VALUE 1
|
|
|
|
#define KEY_SET_VALUE 2
|
|
|
|
#define KEY_CREATE_SUB_KEY 4
|
|
|
|
#define KEY_ENUMERATE_SUB_KEYS 8
|
|
|
|
#define KEY_NOTIFY 16
|
|
|
|
#define KEY_CREATE_LINK 32
|
2008-09-14 18:22:53 +00:00
|
|
|
#define KEY_WOW64_64KEY 0x00000100
|
|
|
|
#define KEY_WOW64_32KEY 0x00000200
|
|
|
|
#define KEY_WOW64_RES 0x00000300
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define KEY_WRITE 0x20006
|
|
|
|
#define KEY_EXECUTE 0x20019
|
|
|
|
#define KEY_READ 0x20019
|
|
|
|
#define KEY_ALL_ACCESS 0xf003f
|
|
|
|
#define REG_WHOLE_HIVE_VOLATILE 1
|
|
|
|
#define REG_REFRESH_HIVE 2
|
|
|
|
#define REG_NO_LAZY_FLUSH 4
|
|
|
|
#define REG_OPTION_RESERVED 0
|
|
|
|
#define REG_OPTION_NON_VOLATILE 0
|
|
|
|
#define REG_OPTION_VOLATILE 1
|
|
|
|
#define REG_OPTION_CREATE_LINK 2
|
|
|
|
#define REG_OPTION_BACKUP_RESTORE 4
|
|
|
|
#define REG_OPTION_OPEN_LINK 8
|
|
|
|
#define REG_LEGAL_OPTION 15
|
|
|
|
#define OWNER_SECURITY_INFORMATION 1
|
|
|
|
#define GROUP_SECURITY_INFORMATION 2
|
|
|
|
#define DACL_SECURITY_INFORMATION 4
|
|
|
|
#define SACL_SECURITY_INFORMATION 8
|
2005-07-26 21:20:55 +00:00
|
|
|
#define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000
|
|
|
|
#define PROTECTED_SACL_SECURITY_INFORMATION 0x40000000
|
|
|
|
#define UNPROTECTED_DACL_SECURITY_INFORMATION 0x20000000
|
|
|
|
#define UNPROTECTED_SACL_SECURITY_INFORMATION 0x10000000
|
2005-05-08 17:44:37 +00:00
|
|
|
#define MAXIMUM_PROCESSORS 32
|
|
|
|
#define PAGE_NOACCESS 0x0001
|
|
|
|
#define PAGE_READONLY 0x0002
|
|
|
|
#define PAGE_READWRITE 0x0004
|
|
|
|
#define PAGE_WRITECOPY 0x0008
|
|
|
|
#define PAGE_EXECUTE 0x0010
|
|
|
|
#define PAGE_EXECUTE_READ 0x0020
|
|
|
|
#define PAGE_EXECUTE_READWRITE 0x0040
|
|
|
|
#define PAGE_EXECUTE_WRITECOPY 0x0080
|
|
|
|
#define PAGE_GUARD 0x0100
|
|
|
|
#define PAGE_NOCACHE 0x0200
|
2005-06-18 12:12:41 +00:00
|
|
|
#define PAGE_WRITECOMBINE 0x0400
|
2005-05-08 17:44:37 +00:00
|
|
|
#define MEM_COMMIT 0x1000
|
|
|
|
#define MEM_RESERVE 0x2000
|
|
|
|
#define MEM_DECOMMIT 0x4000
|
|
|
|
#define MEM_RELEASE 0x8000
|
|
|
|
#define MEM_FREE 0x10000
|
|
|
|
#define MEM_PRIVATE 0x20000
|
|
|
|
#define MEM_MAPPED 0x40000
|
|
|
|
#define MEM_RESET 0x80000
|
|
|
|
#define MEM_TOP_DOWN 0x100000
|
|
|
|
#define MEM_WRITE_WATCH 0x200000 /* 98/Me */
|
|
|
|
#define MEM_PHYSICAL 0x400000
|
|
|
|
#define MEM_4MB_PAGES 0x80000000
|
|
|
|
#define MEM_IMAGE SEC_IMAGE
|
|
|
|
#define SEC_NO_CHANGE 0x00400000
|
|
|
|
#define SEC_FILE 0x00800000
|
|
|
|
#define SEC_IMAGE 0x01000000
|
|
|
|
#define SEC_VLM 0x02000000
|
|
|
|
#define SEC_RESERVE 0x04000000
|
|
|
|
#define SEC_COMMIT 0x08000000
|
|
|
|
#define SEC_NOCACHE 0x10000000
|
2011-01-22 19:17:10 +00:00
|
|
|
#define SEC_WRITECOMBINE 0x40000000
|
2010-10-02 01:12:53 +00:00
|
|
|
#define SEC_LARGE_PAGES 0x80000000
|
2005-05-08 17:44:37 +00:00
|
|
|
#define SECTION_EXTEND_SIZE 16
|
|
|
|
#define SECTION_MAP_READ 4
|
|
|
|
#define SECTION_MAP_WRITE 2
|
|
|
|
#define SECTION_QUERY 1
|
|
|
|
#define SECTION_MAP_EXECUTE 8
|
|
|
|
#define SECTION_ALL_ACCESS 0xf001f
|
2008-12-21 19:37:18 +00:00
|
|
|
#define WRITE_WATCH_FLAG_RESET 0x01
|
2005-05-08 17:44:37 +00:00
|
|
|
#define MESSAGE_RESOURCE_UNICODE 1
|
|
|
|
#define RTL_CRITSECT_TYPE 0
|
|
|
|
#define RTL_RESOURCE_TYPE 1
|
|
|
|
/* Also in winddk.h */
|
2009-07-25 19:38:52 +00:00
|
|
|
#if !defined(__GNUC__)
|
|
|
|
#define FIELD_OFFSET(t,f) ((LONG)(LONG_PTR)&(((t*) 0)->f))
|
2009-05-27 10:55:41 +00:00
|
|
|
#else
|
2009-07-25 19:38:52 +00:00
|
|
|
#define FIELD_OFFSET(t,f) ((LONG)__builtin_offsetof(t,f))
|
2009-05-27 10:55:41 +00:00
|
|
|
#endif
|
2005-05-08 17:44:37 +00:00
|
|
|
#ifndef CONTAINING_RECORD
|
|
|
|
#define CONTAINING_RECORD(address, type, field) \
|
2005-08-02 11:23:40 +00:00
|
|
|
((type *)(((ULONG_PTR)address) - (ULONG_PTR)(&(((type *)0)->field))))
|
2005-05-08 17:44:37 +00:00
|
|
|
#endif
|
|
|
|
/* end winddk.h */
|
|
|
|
#define IMAGE_SIZEOF_FILE_HEADER 20
|
|
|
|
#define IMAGE_FILE_RELOCS_STRIPPED 1
|
|
|
|
#define IMAGE_FILE_EXECUTABLE_IMAGE 2
|
|
|
|
#define IMAGE_FILE_LINE_NUMS_STRIPPED 4
|
|
|
|
#define IMAGE_FILE_LOCAL_SYMS_STRIPPED 8
|
|
|
|
#define IMAGE_FILE_AGGRESIVE_WS_TRIM 16
|
|
|
|
#define IMAGE_FILE_LARGE_ADDRESS_AWARE 32
|
|
|
|
#define IMAGE_FILE_BYTES_REVERSED_LO 128
|
|
|
|
#define IMAGE_FILE_32BIT_MACHINE 256
|
|
|
|
#define IMAGE_FILE_DEBUG_STRIPPED 512
|
|
|
|
#define IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP 1024
|
|
|
|
#define IMAGE_FILE_NET_RUN_FROM_SWAP 2048
|
|
|
|
#define IMAGE_FILE_SYSTEM 4096
|
|
|
|
#define IMAGE_FILE_DLL 8192
|
|
|
|
#define IMAGE_FILE_UP_SYSTEM_ONLY 16384
|
|
|
|
#define IMAGE_FILE_BYTES_REVERSED_HI 32768
|
|
|
|
#define IMAGE_FILE_MACHINE_UNKNOWN 0
|
2007-01-01 20:21:43 +00:00
|
|
|
|
|
|
|
#define IMAGE_FILE_MACHINE_AM33 0x1d3
|
|
|
|
#define IMAGE_FILE_MACHINE_AMD64 0x8664
|
|
|
|
#define IMAGE_FILE_MACHINE_ARM 0x1c0
|
|
|
|
#define IMAGE_FILE_MACHINE_EBC 0xebc
|
|
|
|
#define IMAGE_FILE_MACHINE_I386 0x14c
|
|
|
|
#define IMAGE_FILE_MACHINE_IA64 0x200
|
|
|
|
#define IMAGE_FILE_MACHINE_M32R 0x9041
|
|
|
|
#define IMAGE_FILE_MACHINE_MIPS16 0x266
|
|
|
|
#define IMAGE_FILE_MACHINE_MIPSFPU 0x366
|
|
|
|
#define IMAGE_FILE_MACHINE_MIPSFPU16 0x466
|
|
|
|
#define IMAGE_FILE_MACHINE_POWERPC 0x1f0
|
|
|
|
#define IMAGE_FILE_MACHINE_POWERPCFP 0x1f1
|
|
|
|
#define IMAGE_FILE_MACHINE_R4000 0x166
|
|
|
|
#define IMAGE_FILE_MACHINE_SH3 0x1a2
|
|
|
|
#define IMAGE_FILE_MACHINE_SH3E 0x01a4
|
|
|
|
#define IMAGE_FILE_MACHINE_SH3DSP 0x1a3
|
|
|
|
#define IMAGE_FILE_MACHINE_SH4 0x1a6
|
|
|
|
#define IMAGE_FILE_MACHINE_SH5 0x1a8
|
|
|
|
#define IMAGE_FILE_MACHINE_THUMB 0x1c2
|
|
|
|
#define IMAGE_FILE_MACHINE_WCEMIPSV2 0x169
|
|
|
|
#define IMAGE_FILE_MACHINE_R3000 0x162
|
|
|
|
#define IMAGE_FILE_MACHINE_R10000 0x168
|
|
|
|
#define IMAGE_FILE_MACHINE_ALPHA 0x184
|
|
|
|
#define IMAGE_FILE_MACHINE_ALPHA64 0x0284
|
|
|
|
#define IMAGE_FILE_MACHINE_AXP64 IMAGE_FILE_MACHINE_ALPHA64
|
|
|
|
#define IMAGE_FILE_MACHINE_CEE 0xC0EE
|
|
|
|
#define IMAGE_FILE_MACHINE_TRICORE 0x0520
|
|
|
|
#define IMAGE_FILE_MACHINE_CEF 0x0CEF
|
|
|
|
|
2010-07-26 22:33:59 +00:00
|
|
|
#define IMAGE_FILE_EXPORT_DIRECTORY 0
|
|
|
|
#define IMAGE_FILE_IMPORT_DIRECTORY 1
|
|
|
|
#define IMAGE_FILE_RESOURCE_DIRECTORY 2
|
|
|
|
#define IMAGE_FILE_EXCEPTION_DIRECTORY 3
|
|
|
|
#define IMAGE_FILE_SECURITY_DIRECTORY 4
|
|
|
|
#define IMAGE_FILE_BASE_RELOCATION_TABLE 5
|
|
|
|
#define IMAGE_FILE_DEBUG_DIRECTORY 6
|
|
|
|
#define IMAGE_FILE_DESCRIPTION_STRING 7
|
|
|
|
#define IMAGE_FILE_MACHINE_VALUE 8 /* Mips */
|
|
|
|
#define IMAGE_FILE_THREAD_LOCAL_STORAGE 9
|
|
|
|
#define IMAGE_FILE_CALLBACK_DIRECTORY 10
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define IMAGE_DOS_SIGNATURE 0x5A4D
|
|
|
|
#define IMAGE_OS2_SIGNATURE 0x454E
|
|
|
|
#define IMAGE_OS2_SIGNATURE_LE 0x454C
|
|
|
|
#define IMAGE_VXD_SIGNATURE 0x454C
|
|
|
|
#define IMAGE_NT_SIGNATURE 0x00004550
|
2005-06-19 00:06:08 +00:00
|
|
|
#define IMAGE_NT_OPTIONAL_HDR32_MAGIC 0x10b
|
|
|
|
#define IMAGE_NT_OPTIONAL_HDR64_MAGIC 0x20b
|
|
|
|
#ifdef _WIN64
|
|
|
|
#define IMAGE_NT_OPTIONAL_HDR_MAGIC IMAGE_NT_OPTIONAL_HDR64_MAGIC
|
|
|
|
#else
|
|
|
|
#define IMAGE_NT_OPTIONAL_HDR_MAGIC IMAGE_NT_OPTIONAL_HDR32_MAGIC
|
|
|
|
#endif
|
2005-05-08 17:44:37 +00:00
|
|
|
#define IMAGE_ROM_OPTIONAL_HDR_MAGIC 0x107
|
|
|
|
#define IMAGE_SEPARATE_DEBUG_SIGNATURE 0x4944
|
|
|
|
#define IMAGE_NUMBEROF_DIRECTORY_ENTRIES 16
|
|
|
|
#define IMAGE_SIZEOF_ROM_OPTIONAL_HEADER 56
|
|
|
|
#define IMAGE_SIZEOF_STD_OPTIONAL_HEADER 28
|
|
|
|
#define IMAGE_SIZEOF_NT_OPTIONAL_HEADER 224
|
|
|
|
#define IMAGE_SIZEOF_SHORT_NAME 8
|
|
|
|
#define IMAGE_SIZEOF_SECTION_HEADER 40
|
|
|
|
#define IMAGE_SIZEOF_SYMBOL 18
|
|
|
|
#define IMAGE_SIZEOF_AUX_SYMBOL 18
|
|
|
|
#define IMAGE_SIZEOF_RELOCATION 10
|
|
|
|
#define IMAGE_SIZEOF_BASE_RELOCATION 8
|
|
|
|
#define IMAGE_SIZEOF_LINENUMBER 6
|
|
|
|
#define IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR 60
|
|
|
|
#define SIZEOF_RFPO_DATA 16
|
2007-01-01 21:32:21 +00:00
|
|
|
|
|
|
|
#define IMAGE_SUBSYSTEM_UNKNOWN 0
|
|
|
|
#define IMAGE_SUBSYSTEM_NATIVE 1
|
|
|
|
#define IMAGE_SUBSYSTEM_WINDOWS_GUI 2
|
|
|
|
#define IMAGE_SUBSYSTEM_WINDOWS_CUI 3
|
|
|
|
#define IMAGE_SUBSYSTEM_OS2_CUI 5
|
|
|
|
#define IMAGE_SUBSYSTEM_POSIX_CUI 7
|
|
|
|
#define IMAGE_SUBSYSTEM_NATIVE_WINDOWS 8
|
|
|
|
#define IMAGE_SUBSYSTEM_WINDOWS_CE_GUI 9
|
|
|
|
#define IMAGE_SUBSYSTEM_EFI_APPLICATION 10
|
|
|
|
#define IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER 11
|
|
|
|
#define IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER 12
|
|
|
|
#define IMAGE_SUBSYSTEM_EFI_ROM 13
|
|
|
|
#define IMAGE_SUBSYSTEM_XBOX 14
|
|
|
|
|
Sync aclui, advapi32, atl, authz, kernel32, msi, oledlg, powrprof, qmgr, riched20, samlib to Wine 1.2rc5
Update some psdk Headers to get some more synched winetests build
svn path=/trunk/; revision=47930
2010-07-03 12:42:55 +00:00
|
|
|
#define IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE 0x0040
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY 0x0080
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_NX_COMPAT 0x0100
|
This one is for Steven... 18 months later, I kept my promise ;)
- BindImage & friends refactoring of my original code. Fixed two or three dozen bugs, stopped making assumptions about everything, actually checked for failure, used dynamic allocation instead of 32 static structures, fixed a lot of broken code, fixed some helper functions, made the code as 64-bit compatible as I could (checked with msvc WP64 + prefast).
- Remove internal.c and use NDK instead
- Remove debug.c and symbol.c like WINE have done
- Rewrite the entire exports file to update it for XP. Forward almost all the functions to dbghelp, like WINE have done (note: windows DLL used delayed imports instead).
- Cleanup source to add implemented/unimplemented tags, source header, and precompiled header.
- Sync with latest code from WINE.
Tested with Quicken 2004 & its patches (which make extensive use of BindImage) as well as random bindings of some applications on my disk. Worked perfectly in Windows.
svn path=/trunk/; revision=19025
2005-11-06 10:48:14 +00:00
|
|
|
#define IMAGE_DLLCHARACTERISTICS_NO_ISOLATION 0x0200
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_NO_SEH 0x0400
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_NO_BIND 0x0800
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_WDM_DRIVER 0x2000
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE 0x8000
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
#define IMAGE_FIRST_SECTION(h) ((PIMAGE_SECTION_HEADER) ((ULONG_PTR)h+FIELD_OFFSET(IMAGE_NT_HEADERS,OptionalHeader)+((PIMAGE_NT_HEADERS)(h))->FileHeader.SizeOfOptionalHeader))
|
2005-05-08 17:44:37 +00:00
|
|
|
#define IMAGE_DIRECTORY_ENTRY_EXPORT 0
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_IMPORT 1
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_RESOURCE 2
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_EXCEPTION 3
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_SECURITY 4
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_BASERELOC 5
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_DEBUG 6
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_COPYRIGHT 7
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_GLOBALPTR 8
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_TLS 9
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG 10
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT 11
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_IAT 12
|
2006-07-03 20:23:48 +00:00
|
|
|
#define IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT 13
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR 14
|
2005-06-19 00:06:08 +00:00
|
|
|
#define IMAGE_SCN_TYPE_REG 0
|
|
|
|
#define IMAGE_SCN_TYPE_DSECT 1
|
2006-10-25 18:23:45 +00:00
|
|
|
//#define IMAGE_SCN_TYPE_NOLOAD 2
|
2005-06-19 00:06:08 +00:00
|
|
|
#define IMAGE_SCN_TYPE_GROUP 4
|
2005-05-08 17:44:37 +00:00
|
|
|
#define IMAGE_SCN_TYPE_NO_PAD 8
|
|
|
|
#define IMAGE_SCN_CNT_CODE 32
|
|
|
|
#define IMAGE_SCN_CNT_INITIALIZED_DATA 64
|
|
|
|
#define IMAGE_SCN_CNT_UNINITIALIZED_DATA 128
|
|
|
|
#define IMAGE_SCN_LNK_OTHER 256
|
|
|
|
#define IMAGE_SCN_LNK_INFO 512
|
|
|
|
#define IMAGE_SCN_LNK_REMOVE 2048
|
|
|
|
#define IMAGE_SCN_LNK_COMDAT 4096
|
|
|
|
#define IMAGE_SCN_MEM_FARDATA 0x8000
|
|
|
|
#define IMAGE_SCN_MEM_PURGEABLE 0x20000
|
|
|
|
#define IMAGE_SCN_MEM_16BIT 0x20000
|
|
|
|
#define IMAGE_SCN_MEM_LOCKED 0x40000
|
|
|
|
#define IMAGE_SCN_MEM_PRELOAD 0x80000
|
|
|
|
#define IMAGE_SCN_ALIGN_1BYTES 0x100000
|
|
|
|
#define IMAGE_SCN_ALIGN_2BYTES 0x200000
|
|
|
|
#define IMAGE_SCN_ALIGN_4BYTES 0x300000
|
|
|
|
#define IMAGE_SCN_ALIGN_8BYTES 0x400000
|
|
|
|
#define IMAGE_SCN_ALIGN_16BYTES 0x500000
|
|
|
|
#define IMAGE_SCN_ALIGN_32BYTES 0x600000
|
|
|
|
#define IMAGE_SCN_ALIGN_64BYTES 0x700000
|
|
|
|
#define IMAGE_SCN_LNK_NRELOC_OVFL 0x1000000
|
|
|
|
#define IMAGE_SCN_MEM_DISCARDABLE 0x2000000
|
|
|
|
#define IMAGE_SCN_MEM_NOT_CACHED 0x4000000
|
|
|
|
#define IMAGE_SCN_MEM_NOT_PAGED 0x8000000
|
|
|
|
#define IMAGE_SCN_MEM_SHARED 0x10000000
|
|
|
|
#define IMAGE_SCN_MEM_EXECUTE 0x20000000
|
|
|
|
#define IMAGE_SCN_MEM_READ 0x40000000
|
|
|
|
#define IMAGE_SCN_MEM_WRITE 0x80000000
|
|
|
|
#define IMAGE_SYM_UNDEFINED 0
|
|
|
|
#define IMAGE_SYM_ABSOLUTE (-1)
|
|
|
|
#define IMAGE_SYM_DEBUG (-2)
|
|
|
|
#define IMAGE_SYM_TYPE_NULL 0
|
|
|
|
#define IMAGE_SYM_TYPE_VOID 1
|
|
|
|
#define IMAGE_SYM_TYPE_CHAR 2
|
|
|
|
#define IMAGE_SYM_TYPE_SHORT 3
|
|
|
|
#define IMAGE_SYM_TYPE_INT 4
|
|
|
|
#define IMAGE_SYM_TYPE_LONG 5
|
|
|
|
#define IMAGE_SYM_TYPE_FLOAT 6
|
|
|
|
#define IMAGE_SYM_TYPE_DOUBLE 7
|
|
|
|
#define IMAGE_SYM_TYPE_STRUCT 8
|
|
|
|
#define IMAGE_SYM_TYPE_UNION 9
|
|
|
|
#define IMAGE_SYM_TYPE_ENUM 10
|
|
|
|
#define IMAGE_SYM_TYPE_MOE 11
|
|
|
|
#define IMAGE_SYM_TYPE_BYTE 12
|
|
|
|
#define IMAGE_SYM_TYPE_WORD 13
|
|
|
|
#define IMAGE_SYM_TYPE_UINT 14
|
|
|
|
#define IMAGE_SYM_TYPE_DWORD 15
|
|
|
|
#define IMAGE_SYM_TYPE_PCODE 32768
|
|
|
|
#define IMAGE_SYM_DTYPE_NULL 0
|
|
|
|
#define IMAGE_SYM_DTYPE_POINTER 1
|
|
|
|
#define IMAGE_SYM_DTYPE_FUNCTION 2
|
|
|
|
#define IMAGE_SYM_DTYPE_ARRAY 3
|
|
|
|
#define IMAGE_SYM_CLASS_END_OF_FUNCTION (-1)
|
|
|
|
#define IMAGE_SYM_CLASS_NULL 0
|
|
|
|
#define IMAGE_SYM_CLASS_AUTOMATIC 1
|
|
|
|
#define IMAGE_SYM_CLASS_EXTERNAL 2
|
|
|
|
#define IMAGE_SYM_CLASS_STATIC 3
|
|
|
|
#define IMAGE_SYM_CLASS_REGISTER 4
|
|
|
|
#define IMAGE_SYM_CLASS_EXTERNAL_DEF 5
|
|
|
|
#define IMAGE_SYM_CLASS_LABEL 6
|
|
|
|
#define IMAGE_SYM_CLASS_UNDEFINED_LABEL 7
|
|
|
|
#define IMAGE_SYM_CLASS_MEMBER_OF_STRUCT 8
|
|
|
|
#define IMAGE_SYM_CLASS_ARGUMENT 9
|
|
|
|
#define IMAGE_SYM_CLASS_STRUCT_TAG 10
|
|
|
|
#define IMAGE_SYM_CLASS_MEMBER_OF_UNION 11
|
|
|
|
#define IMAGE_SYM_CLASS_UNION_TAG 12
|
|
|
|
#define IMAGE_SYM_CLASS_TYPE_DEFINITION 13
|
|
|
|
#define IMAGE_SYM_CLASS_UNDEFINED_STATIC 14
|
|
|
|
#define IMAGE_SYM_CLASS_ENUM_TAG 15
|
|
|
|
#define IMAGE_SYM_CLASS_MEMBER_OF_ENUM 16
|
|
|
|
#define IMAGE_SYM_CLASS_REGISTER_PARAM 17
|
|
|
|
#define IMAGE_SYM_CLASS_BIT_FIELD 18
|
|
|
|
#define IMAGE_SYM_CLASS_FAR_EXTERNAL 68
|
|
|
|
#define IMAGE_SYM_CLASS_BLOCK 100
|
|
|
|
#define IMAGE_SYM_CLASS_FUNCTION 101
|
|
|
|
#define IMAGE_SYM_CLASS_END_OF_STRUCT 102
|
|
|
|
#define IMAGE_SYM_CLASS_FILE 103
|
|
|
|
#define IMAGE_SYM_CLASS_SECTION 104
|
|
|
|
#define IMAGE_SYM_CLASS_WEAK_EXTERNAL 105
|
|
|
|
#define IMAGE_COMDAT_SELECT_NODUPLICATES 1
|
|
|
|
#define IMAGE_COMDAT_SELECT_ANY 2
|
|
|
|
#define IMAGE_COMDAT_SELECT_SAME_SIZE 3
|
|
|
|
#define IMAGE_COMDAT_SELECT_EXACT_MATCH 4
|
|
|
|
#define IMAGE_COMDAT_SELECT_ASSOCIATIVE 5
|
|
|
|
#define IMAGE_COMDAT_SELECT_LARGEST 6
|
|
|
|
#define IMAGE_COMDAT_SELECT_NEWEST 7
|
|
|
|
#define IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY 1
|
|
|
|
#define IMAGE_WEAK_EXTERN_SEARCH_LIBRARY 2
|
|
|
|
#define IMAGE_WEAK_EXTERN_SEARCH_ALIAS 3
|
|
|
|
#define IMAGE_REL_I386_ABSOLUTE 0
|
|
|
|
#define IMAGE_REL_I386_DIR16 1
|
|
|
|
#define IMAGE_REL_I386_REL16 2
|
|
|
|
#define IMAGE_REL_I386_DIR32 6
|
|
|
|
#define IMAGE_REL_I386_DIR32NB 7
|
|
|
|
#define IMAGE_REL_I386_SEG12 9
|
|
|
|
#define IMAGE_REL_I386_SECTION 10
|
|
|
|
#define IMAGE_REL_I386_SECREL 11
|
|
|
|
#define IMAGE_REL_I386_REL32 20
|
|
|
|
#define IMAGE_REL_MIPS_ABSOLUTE 0
|
|
|
|
#define IMAGE_REL_MIPS_REFHALF 1
|
|
|
|
#define IMAGE_REL_MIPS_REFWORD 2
|
|
|
|
#define IMAGE_REL_MIPS_JMPADDR 3
|
|
|
|
#define IMAGE_REL_MIPS_REFHI 4
|
|
|
|
#define IMAGE_REL_MIPS_REFLO 5
|
|
|
|
#define IMAGE_REL_MIPS_GPREL 6
|
|
|
|
#define IMAGE_REL_MIPS_LITERAL 7
|
|
|
|
#define IMAGE_REL_MIPS_SECTION 10
|
|
|
|
#define IMAGE_REL_MIPS_SECREL 11
|
|
|
|
#define IMAGE_REL_MIPS_SECRELLO 12
|
|
|
|
#define IMAGE_REL_MIPS_SECRELHI 13
|
|
|
|
#define IMAGE_REL_MIPS_REFWORDNB 34
|
|
|
|
#define IMAGE_REL_MIPS_PAIR 35
|
|
|
|
#define IMAGE_REL_ALPHA_ABSOLUTE 0
|
|
|
|
#define IMAGE_REL_ALPHA_REFLONG 1
|
|
|
|
#define IMAGE_REL_ALPHA_REFQUAD 2
|
|
|
|
#define IMAGE_REL_ALPHA_GPREL32 3
|
|
|
|
#define IMAGE_REL_ALPHA_LITERAL 4
|
|
|
|
#define IMAGE_REL_ALPHA_LITUSE 5
|
|
|
|
#define IMAGE_REL_ALPHA_GPDISP 6
|
|
|
|
#define IMAGE_REL_ALPHA_BRADDR 7
|
|
|
|
#define IMAGE_REL_ALPHA_HINT 8
|
|
|
|
#define IMAGE_REL_ALPHA_INLINE_REFLONG 9
|
|
|
|
#define IMAGE_REL_ALPHA_REFHI 10
|
|
|
|
#define IMAGE_REL_ALPHA_REFLO 11
|
|
|
|
#define IMAGE_REL_ALPHA_PAIR 12
|
|
|
|
#define IMAGE_REL_ALPHA_MATCH 13
|
|
|
|
#define IMAGE_REL_ALPHA_SECTION 14
|
|
|
|
#define IMAGE_REL_ALPHA_SECREL 15
|
|
|
|
#define IMAGE_REL_ALPHA_REFLONGNB 16
|
|
|
|
#define IMAGE_REL_ALPHA_SECRELLO 17
|
|
|
|
#define IMAGE_REL_ALPHA_SECRELHI 18
|
|
|
|
#define IMAGE_REL_PPC_ABSOLUTE 0
|
|
|
|
#define IMAGE_REL_PPC_ADDR64 1
|
|
|
|
#define IMAGE_REL_PPC_ADDR32 2
|
|
|
|
#define IMAGE_REL_PPC_ADDR24 3
|
|
|
|
#define IMAGE_REL_PPC_ADDR16 4
|
|
|
|
#define IMAGE_REL_PPC_ADDR14 5
|
|
|
|
#define IMAGE_REL_PPC_REL24 6
|
|
|
|
#define IMAGE_REL_PPC_REL14 7
|
|
|
|
#define IMAGE_REL_PPC_TOCREL16 8
|
|
|
|
#define IMAGE_REL_PPC_TOCREL14 9
|
|
|
|
#define IMAGE_REL_PPC_ADDR32NB 10
|
|
|
|
#define IMAGE_REL_PPC_SECREL 11
|
|
|
|
#define IMAGE_REL_PPC_SECTION 12
|
|
|
|
#define IMAGE_REL_PPC_IFGLUE 13
|
|
|
|
#define IMAGE_REL_PPC_IMGLUE 14
|
|
|
|
#define IMAGE_REL_PPC_SECREL16 15
|
|
|
|
#define IMAGE_REL_PPC_REFHI 16
|
|
|
|
#define IMAGE_REL_PPC_REFLO 17
|
|
|
|
#define IMAGE_REL_PPC_PAIR 18
|
|
|
|
#define IMAGE_REL_PPC_TYPEMASK 255
|
|
|
|
#define IMAGE_REL_PPC_NEG 256
|
|
|
|
#define IMAGE_REL_PPC_BRTAKEN 512
|
|
|
|
#define IMAGE_REL_PPC_BRNTAKEN 1024
|
|
|
|
#define IMAGE_REL_PPC_TOCDEFN 2048
|
|
|
|
#define IMAGE_REL_BASED_ABSOLUTE 0
|
|
|
|
#define IMAGE_REL_BASED_HIGH 1
|
|
|
|
#define IMAGE_REL_BASED_LOW 2
|
|
|
|
#define IMAGE_REL_BASED_HIGHLOW 3
|
|
|
|
#define IMAGE_REL_BASED_HIGHADJ 4
|
|
|
|
#define IMAGE_REL_BASED_MIPS_JMPADDR 5
|
Merge freeldr from amd64 branch:
34725, 34726, 34727, 34728, 34733, 34735, 34747, 34748, 34888, 34937, 34968, 35021, 35351, 35360, 35445, 35493, 35495, 35505, 35547, 35696, 35704, 36343, 36355, 36865, 37306, 37896, 38332, 38942, 38950, 38951, 38959, 39073, 39278
svn path=/trunk/; revision=39638
2009-02-17 04:05:26 +00:00
|
|
|
#define IMAGE_REL_BASED_MIPS_JMPADDR16 9
|
|
|
|
#define IMAGE_REL_BASED_IA64_IMM64 9
|
|
|
|
#define IMAGE_REL_BASED_DIR64 10
|
2005-05-08 17:44:37 +00:00
|
|
|
#define IMAGE_ARCHIVE_START_SIZE 8
|
|
|
|
#define IMAGE_ARCHIVE_START "!<arch>\n"
|
|
|
|
#define IMAGE_ARCHIVE_END "`\n"
|
|
|
|
#define IMAGE_ARCHIVE_PAD "\n"
|
|
|
|
#define IMAGE_ARCHIVE_LINKER_MEMBER "/ "
|
|
|
|
#define IMAGE_ARCHIVE_LONGNAMES_MEMBER "// "
|
|
|
|
#define IMAGE_RESOURCE_NAME_IS_STRING 0x80000000
|
|
|
|
#define IMAGE_RESOURCE_DATA_IS_DIRECTORY 0x80000000
|
|
|
|
#define IMAGE_DEBUG_TYPE_UNKNOWN 0
|
|
|
|
#define IMAGE_DEBUG_TYPE_COFF 1
|
|
|
|
#define IMAGE_DEBUG_TYPE_CODEVIEW 2
|
|
|
|
#define IMAGE_DEBUG_TYPE_FPO 3
|
|
|
|
#define IMAGE_DEBUG_TYPE_MISC 4
|
|
|
|
#define IMAGE_DEBUG_TYPE_EXCEPTION 5
|
|
|
|
#define IMAGE_DEBUG_TYPE_FIXUP 6
|
|
|
|
#define IMAGE_DEBUG_TYPE_OMAP_TO_SRC 7
|
|
|
|
#define IMAGE_DEBUG_TYPE_OMAP_FROM_SRC 8
|
|
|
|
#define FRAME_FPO 0
|
|
|
|
#define FRAME_TRAP 1
|
|
|
|
#define FRAME_TSS 2
|
|
|
|
#define FRAME_NONFPO 3
|
|
|
|
#define IMAGE_DEBUG_MISC_EXENAME 1
|
|
|
|
#define N_BTMASK 0x000F
|
|
|
|
#define N_TMASK 0x0030
|
|
|
|
#define N_TMASK1 0x00C0
|
|
|
|
#define N_TMASK2 0x00F0
|
|
|
|
#define N_BTSHFT 4
|
|
|
|
#define N_TSHIFT 2
|
|
|
|
#define IS_TEXT_UNICODE_ASCII16 1
|
|
|
|
#define IS_TEXT_UNICODE_REVERSE_ASCII16 16
|
|
|
|
#define IS_TEXT_UNICODE_STATISTICS 2
|
|
|
|
#define IS_TEXT_UNICODE_REVERSE_STATISTICS 32
|
|
|
|
#define IS_TEXT_UNICODE_CONTROLS 4
|
|
|
|
#define IS_TEXT_UNICODE_REVERSE_CONTROLS 64
|
|
|
|
#define IS_TEXT_UNICODE_SIGNATURE 8
|
|
|
|
#define IS_TEXT_UNICODE_REVERSE_SIGNATURE 128
|
|
|
|
#define IS_TEXT_UNICODE_ILLEGAL_CHARS 256
|
|
|
|
#define IS_TEXT_UNICODE_ODD_LENGTH 512
|
|
|
|
#define IS_TEXT_UNICODE_NULL_BYTES 4096
|
|
|
|
#define IS_TEXT_UNICODE_UNICODE_MASK 15
|
|
|
|
#define IS_TEXT_UNICODE_REVERSE_MASK 240
|
|
|
|
#define IS_TEXT_UNICODE_NOT_UNICODE_MASK 3840
|
|
|
|
#define IS_TEXT_UNICODE_NOT_ASCII_MASK 61440
|
|
|
|
#define SERVICE_KERNEL_DRIVER 1
|
|
|
|
#define SERVICE_FILE_SYSTEM_DRIVER 2
|
|
|
|
#define SERVICE_ADAPTER 4
|
|
|
|
#define SERVICE_RECOGNIZER_DRIVER 8
|
|
|
|
#define SERVICE_DRIVER (SERVICE_KERNEL_DRIVER|SERVICE_FILE_SYSTEM_DRIVER|SERVICE_RECOGNIZER_DRIVER)
|
|
|
|
#define SERVICE_WIN32_OWN_PROCESS 16
|
|
|
|
#define SERVICE_WIN32_SHARE_PROCESS 32
|
|
|
|
#define SERVICE_WIN32 (SERVICE_WIN32_OWN_PROCESS|SERVICE_WIN32_SHARE_PROCESS)
|
|
|
|
#define SERVICE_INTERACTIVE_PROCESS 256
|
|
|
|
#define SERVICE_TYPE_ALL (SERVICE_WIN32|SERVICE_ADAPTER|SERVICE_DRIVER|SERVICE_INTERACTIVE_PROCESS)
|
|
|
|
#define SERVICE_BOOT_START 0
|
|
|
|
#define SERVICE_SYSTEM_START 1
|
|
|
|
#define SERVICE_AUTO_START 2
|
|
|
|
#define SERVICE_DEMAND_START 3
|
|
|
|
#define SERVICE_DISABLED 4
|
|
|
|
#define SERVICE_ERROR_IGNORE 0
|
|
|
|
#define SERVICE_ERROR_NORMAL 1
|
|
|
|
#define SERVICE_ERROR_SEVERE 2
|
|
|
|
#define SERVICE_ERROR_CRITICAL 3
|
|
|
|
#define SE_OWNER_DEFAULTED 1
|
|
|
|
#define SE_GROUP_DEFAULTED 2
|
|
|
|
#define SE_DACL_PRESENT 4
|
|
|
|
#define SE_DACL_DEFAULTED 8
|
|
|
|
#define SE_SACL_PRESENT 16
|
|
|
|
#define SE_SACL_DEFAULTED 32
|
|
|
|
#define SE_DACL_AUTO_INHERIT_REQ 256
|
|
|
|
#define SE_SACL_AUTO_INHERIT_REQ 512
|
|
|
|
#define SE_DACL_AUTO_INHERITED 1024
|
|
|
|
#define SE_SACL_AUTO_INHERITED 2048
|
|
|
|
#define SE_DACL_PROTECTED 4096
|
|
|
|
#define SE_SACL_PROTECTED 8192
|
2005-06-19 21:35:57 +00:00
|
|
|
#define SE_RM_CONTROL_VALID 0x4000
|
2005-05-08 17:44:37 +00:00
|
|
|
#define SE_SELF_RELATIVE 0x8000
|
|
|
|
#define SECURITY_DESCRIPTOR_MIN_LENGTH 20
|
|
|
|
#define SECURITY_DESCRIPTOR_REVISION 1
|
|
|
|
#define SECURITY_DESCRIPTOR_REVISION1 1
|
|
|
|
#define SE_PRIVILEGE_ENABLED_BY_DEFAULT 1
|
|
|
|
#define SE_PRIVILEGE_ENABLED 2
|
|
|
|
#define SE_PRIVILEGE_USED_FOR_ACCESS 0x80000000
|
|
|
|
#define PRIVILEGE_SET_ALL_NECESSARY 1
|
|
|
|
#define SECURITY_MAX_IMPERSONATION_LEVEL SecurityDelegation
|
|
|
|
#define DEFAULT_IMPERSONATION_LEVEL SecurityImpersonation
|
|
|
|
#define SECURITY_DYNAMIC_TRACKING TRUE
|
|
|
|
#define SECURITY_STATIC_TRACKING FALSE
|
|
|
|
/* also in ddk/ntifs.h */
|
|
|
|
#define TOKEN_ASSIGN_PRIMARY (0x0001)
|
|
|
|
#define TOKEN_DUPLICATE (0x0002)
|
|
|
|
#define TOKEN_IMPERSONATE (0x0004)
|
|
|
|
#define TOKEN_QUERY (0x0008)
|
|
|
|
#define TOKEN_QUERY_SOURCE (0x0010)
|
|
|
|
#define TOKEN_ADJUST_PRIVILEGES (0x0020)
|
|
|
|
#define TOKEN_ADJUST_GROUPS (0x0040)
|
|
|
|
#define TOKEN_ADJUST_DEFAULT (0x0080)
|
2005-05-08 18:02:41 +00:00
|
|
|
#define TOKEN_ADJUST_SESSIONID (0x0100)
|
2005-05-08 17:44:37 +00:00
|
|
|
#define TOKEN_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED |\
|
|
|
|
TOKEN_ASSIGN_PRIMARY |\
|
|
|
|
TOKEN_DUPLICATE |\
|
|
|
|
TOKEN_IMPERSONATE |\
|
|
|
|
TOKEN_QUERY |\
|
|
|
|
TOKEN_QUERY_SOURCE |\
|
|
|
|
TOKEN_ADJUST_PRIVILEGES |\
|
|
|
|
TOKEN_ADJUST_GROUPS |\
|
2005-05-08 18:02:41 +00:00
|
|
|
TOKEN_ADJUST_DEFAULT |\
|
|
|
|
TOKEN_ADJUST_SESSIONID)
|
2005-05-08 17:44:37 +00:00
|
|
|
#define TOKEN_READ (STANDARD_RIGHTS_READ |\
|
|
|
|
TOKEN_QUERY)
|
|
|
|
#define TOKEN_WRITE (STANDARD_RIGHTS_WRITE |\
|
|
|
|
TOKEN_ADJUST_PRIVILEGES |\
|
|
|
|
TOKEN_ADJUST_GROUPS |\
|
|
|
|
TOKEN_ADJUST_DEFAULT)
|
|
|
|
|
|
|
|
#define TOKEN_EXECUTE (STANDARD_RIGHTS_EXECUTE)
|
|
|
|
#define TOKEN_SOURCE_LENGTH 8
|
|
|
|
/* end ddk/ntifs.h */
|
|
|
|
#define DLL_PROCESS_DETACH 0
|
|
|
|
#define DLL_PROCESS_ATTACH 1
|
|
|
|
#define DLL_THREAD_ATTACH 2
|
|
|
|
#define DLL_THREAD_DETACH 3
|
2006-07-03 14:00:16 +00:00
|
|
|
#ifdef __WINESRC__
|
|
|
|
#define DLL_WINE_PREATTACH 8 /* Never called, but defined for compatibility with Wine source */
|
|
|
|
#endif
|
2005-05-08 17:44:37 +00:00
|
|
|
#define TAPE_ABSOLUTE_POSITION 0
|
|
|
|
#define TAPE_LOGICAL_POSITION 1
|
|
|
|
#define TAPE_PSEUDO_LOGICAL_POSITION 2
|
|
|
|
#define TAPE_REWIND 0
|
|
|
|
#define TAPE_ABSOLUTE_BLOCK 1
|
|
|
|
#define TAPE_LOGICAL_BLOCK 2
|
|
|
|
#define TAPE_PSEUDO_LOGICAL_BLOCK 3
|
|
|
|
#define TAPE_SPACE_END_OF_DATA 4
|
|
|
|
#define TAPE_SPACE_RELATIVE_BLOCKS 5
|
|
|
|
#define TAPE_SPACE_FILEMARKS 6
|
|
|
|
#define TAPE_SPACE_SEQUENTIAL_FMKS 7
|
|
|
|
#define TAPE_SPACE_SETMARKS 8
|
|
|
|
#define TAPE_SPACE_SEQUENTIAL_SMKS 9
|
|
|
|
#define TAPE_DRIVE_FIXED 1
|
|
|
|
#define TAPE_DRIVE_SELECT 2
|
|
|
|
#define TAPE_DRIVE_INITIATOR 4
|
|
|
|
#define TAPE_DRIVE_ERASE_SHORT 16
|
|
|
|
#define TAPE_DRIVE_ERASE_LONG 32
|
|
|
|
#define TAPE_DRIVE_ERASE_BOP_ONLY 64
|
|
|
|
#define TAPE_DRIVE_ERASE_IMMEDIATE 128
|
|
|
|
#define TAPE_DRIVE_TAPE_CAPACITY 256
|
|
|
|
#define TAPE_DRIVE_TAPE_REMAINING 512
|
|
|
|
#define TAPE_DRIVE_FIXED_BLOCK 1024
|
|
|
|
#define TAPE_DRIVE_VARIABLE_BLOCK 2048
|
|
|
|
#define TAPE_DRIVE_WRITE_PROTECT 4096
|
|
|
|
#define TAPE_DRIVE_EOT_WZ_SIZE 8192
|
|
|
|
#define TAPE_DRIVE_ECC 0x10000
|
|
|
|
#define TAPE_DRIVE_COMPRESSION 0x20000
|
|
|
|
#define TAPE_DRIVE_PADDING 0x40000
|
|
|
|
#define TAPE_DRIVE_REPORT_SMKS 0x80000
|
|
|
|
#define TAPE_DRIVE_GET_ABSOLUTE_BLK 0x100000
|
|
|
|
#define TAPE_DRIVE_GET_LOGICAL_BLK 0x200000
|
|
|
|
#define TAPE_DRIVE_SET_EOT_WZ_SIZE 0x400000
|
|
|
|
#define TAPE_DRIVE_EJECT_MEDIA 0x1000000
|
|
|
|
#define TAPE_DRIVE_CLEAN_REQUESTS 0x2000000
|
|
|
|
#define TAPE_DRIVE_SET_CMP_BOP_ONLY 0x4000000
|
|
|
|
#define TAPE_DRIVE_RESERVED_BIT 0x80000000
|
|
|
|
#define TAPE_DRIVE_LOAD_UNLOAD 0x80000001
|
|
|
|
#define TAPE_DRIVE_TENSION 0x80000002
|
|
|
|
#define TAPE_DRIVE_LOCK_UNLOCK 0x80000004
|
|
|
|
#define TAPE_DRIVE_REWIND_IMMEDIATE 0x80000008
|
|
|
|
#define TAPE_DRIVE_SET_BLOCK_SIZE 0x80000010
|
|
|
|
#define TAPE_DRIVE_LOAD_UNLD_IMMED 0x80000020
|
|
|
|
#define TAPE_DRIVE_TENSION_IMMED 0x80000040
|
|
|
|
#define TAPE_DRIVE_LOCK_UNLK_IMMED 0x80000080
|
|
|
|
#define TAPE_DRIVE_SET_ECC 0x80000100
|
|
|
|
#define TAPE_DRIVE_SET_COMPRESSION 0x80000200
|
|
|
|
#define TAPE_DRIVE_SET_PADDING 0x80000400
|
|
|
|
#define TAPE_DRIVE_SET_REPORT_SMKS 0x80000800
|
|
|
|
#define TAPE_DRIVE_ABSOLUTE_BLK 0x80001000
|
|
|
|
#define TAPE_DRIVE_ABS_BLK_IMMED 0x80002000
|
|
|
|
#define TAPE_DRIVE_LOGICAL_BLK 0x80004000
|
|
|
|
#define TAPE_DRIVE_LOG_BLK_IMMED 0x80008000
|
|
|
|
#define TAPE_DRIVE_END_OF_DATA 0x80010000
|
|
|
|
#define TAPE_DRIVE_RELATIVE_BLKS 0x80020000
|
|
|
|
#define TAPE_DRIVE_FILEMARKS 0x80040000
|
|
|
|
#define TAPE_DRIVE_SEQUENTIAL_FMKS 0x80080000
|
|
|
|
#define TAPE_DRIVE_SETMARKS 0x80100000
|
|
|
|
#define TAPE_DRIVE_SEQUENTIAL_SMKS 0x80200000
|
|
|
|
#define TAPE_DRIVE_REVERSE_POSITION 0x80400000
|
|
|
|
#define TAPE_DRIVE_SPACE_IMMEDIATE 0x80800000
|
|
|
|
#define TAPE_DRIVE_WRITE_SETMARKS 0x81000000
|
|
|
|
#define TAPE_DRIVE_WRITE_FILEMARKS 0x82000000
|
|
|
|
#define TAPE_DRIVE_WRITE_SHORT_FMKS 0x84000000
|
|
|
|
#define TAPE_DRIVE_WRITE_LONG_FMKS 0x88000000
|
|
|
|
#define TAPE_DRIVE_WRITE_MARK_IMMED 0x90000000
|
|
|
|
#define TAPE_DRIVE_FORMAT 0xA0000000
|
|
|
|
#define TAPE_DRIVE_FORMAT_IMMEDIATE 0xC0000000
|
|
|
|
#define TAPE_DRIVE_HIGH_FEATURES 0x80000000
|
|
|
|
#define TAPE_FIXED_PARTITIONS 0
|
|
|
|
#define TAPE_INITIATOR_PARTITIONS 2
|
|
|
|
#define TAPE_SELECT_PARTITIONS 1
|
|
|
|
#define TAPE_FILEMARKS 1
|
|
|
|
#define TAPE_LONG_FILEMARKS 3
|
|
|
|
#define TAPE_SETMARKS 0
|
|
|
|
#define TAPE_SHORT_FILEMARKS 2
|
|
|
|
#define TAPE_ERASE_LONG 1
|
|
|
|
#define TAPE_ERASE_SHORT 0
|
|
|
|
#define TAPE_LOAD 0
|
|
|
|
#define TAPE_UNLOAD 1
|
|
|
|
#define TAPE_TENSION 2
|
|
|
|
#define TAPE_LOCK 3
|
|
|
|
#define TAPE_UNLOCK 4
|
|
|
|
#define TAPE_FORMAT 5
|
|
|
|
#if (_WIN32_WINNT >= 0x0500)
|
|
|
|
#define VER_MINORVERSION 0x0000001
|
|
|
|
#define VER_MAJORVERSION 0x0000002
|
|
|
|
#define VER_BUILDNUMBER 0x0000004
|
|
|
|
#define VER_PLATFORMID 0x0000008
|
|
|
|
#define VER_SERVICEPACKMINOR 0x0000010
|
|
|
|
#define VER_SERVICEPACKMAJOR 0x0000020
|
|
|
|
#define VER_SUITENAME 0x0000040
|
|
|
|
#define VER_PRODUCT_TYPE 0x0000080
|
|
|
|
#define VER_EQUAL 1
|
|
|
|
#define VER_GREATER 2
|
|
|
|
#define VER_GREATER_EQUAL 3
|
|
|
|
#define VER_LESS 4
|
|
|
|
#define VER_LESS_EQUAL 5
|
|
|
|
#define VER_AND 6
|
|
|
|
#define VER_OR 7
|
|
|
|
#endif
|
2010-06-24 22:23:02 +00:00
|
|
|
#define VER_SERVER_NT 0x80000000
|
|
|
|
#define VER_WORKSTATION_NT 0x40000000
|
2005-05-08 17:44:37 +00:00
|
|
|
#define VER_PLATFORM_WIN32s 0
|
|
|
|
#define VER_PLATFORM_WIN32_WINDOWS 1
|
|
|
|
#define VER_PLATFORM_WIN32_NT 2
|
|
|
|
#define VER_NT_WORKSTATION 1
|
|
|
|
#define VER_NT_DOMAIN_CONTROLLER 2
|
|
|
|
#define VER_NT_SERVER 3
|
|
|
|
#define VER_SUITE_SMALLBUSINESS 1
|
|
|
|
#define VER_SUITE_ENTERPRISE 2
|
|
|
|
#define VER_SUITE_BACKOFFICE 4
|
2010-06-24 22:23:02 +00:00
|
|
|
#define VER_SUITE_COMMUNICATIONS 8
|
2005-05-08 17:44:37 +00:00
|
|
|
#define VER_SUITE_TERMINAL 16
|
|
|
|
#define VER_SUITE_SMALLBUSINESS_RESTRICTED 32
|
2005-10-30 05:56:45 +00:00
|
|
|
#define VER_SUITE_EMBEDDEDNT 64
|
2005-05-08 17:44:37 +00:00
|
|
|
#define VER_SUITE_DATACENTER 128
|
2005-10-30 05:56:45 +00:00
|
|
|
#define VER_SUITE_SINGLEUSERTS 256
|
2005-05-08 17:44:37 +00:00
|
|
|
#define VER_SUITE_PERSONAL 512
|
|
|
|
#define VER_SUITE_BLADE 1024
|
2010-06-24 22:23:02 +00:00
|
|
|
#define VER_SUITE_EMBEDDED_RESTRICTED 2048
|
|
|
|
#define VER_SUITE_SECURITY_APPLIANCE 4096
|
|
|
|
#define VER_SUITE_STORAGE_SERVER 8192
|
|
|
|
#define VER_SUITE_COMPUTE_SERVER 16384
|
|
|
|
#define VER_SUITE_WH_SERVER 32768
|
2005-05-09 01:50:07 +00:00
|
|
|
#define WT_EXECUTEDEFAULT 0x00000000
|
|
|
|
#define WT_EXECUTEINIOTHREAD 0x00000001
|
2006-07-03 20:23:48 +00:00
|
|
|
#define WT_EXECUTEINUITHREAD 0x00000002
|
2005-05-09 01:50:07 +00:00
|
|
|
#define WT_EXECUTEINWAITTHREAD 0x00000004
|
|
|
|
#define WT_EXECUTEONLYONCE 0x00000008
|
|
|
|
#define WT_EXECUTELONGFUNCTION 0x00000010
|
|
|
|
#define WT_EXECUTEINTIMERTHREAD 0x00000020
|
2006-07-03 20:23:48 +00:00
|
|
|
#define WT_EXECUTEINPERSISTENTIOTHREAD 0x00000040
|
2005-05-09 01:50:07 +00:00
|
|
|
#define WT_EXECUTEINPERSISTENTTHREAD 0x00000080
|
|
|
|
#define WT_TRANSFER_IMPERSONATION 0x00000100
|
2006-07-03 20:23:48 +00:00
|
|
|
#define WT_SET_MAX_THREADPOOL_THREADS(flags,limit) ((flags)|=(limit)<<16)
|
|
|
|
typedef VOID (NTAPI *WORKERCALLBACKFUNC)(PVOID);
|
2005-05-08 17:44:37 +00:00
|
|
|
#if (_WIN32_WINNT >= 0x0501)
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION 1
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION 2
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION 3
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION 4
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION 5
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION 6
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION 7
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES 9
|
|
|
|
#endif /* (_WIN32_WINNT >= 0x0501) */
|
|
|
|
#define BTYPE(x) ((x)&N_BTMASK)
|
|
|
|
#define ISPTR(x) (((x)&N_TMASK)==(IMAGE_SYM_DTYPE_POINTER<<N_BTSHFT))
|
|
|
|
#define ISFCN(x) (((x)&N_TMASK)==(IMAGE_SYM_DTYPE_FUNCTION<<N_BTSHFT))
|
|
|
|
#define ISARY(x) (((x)&N_TMASK)==(IMAGE_SYM_DTYPE_ARRAY<<N_BTSHFT))
|
|
|
|
#define ISTAG(x) ((x)==IMAGE_SYM_CLASS_STRUCT_TAG||(x)==IMAGE_SYM_CLASS_UNION_TAG||(x)==IMAGE_SYM_CLASS_ENUM_TAG)
|
|
|
|
#define INCREF(x) ((((x)&~N_BTMASK)<<N_TSHIFT)|(IMAGE_SYM_DTYPE_POINTER<<N_BTSHFT)|((x)&N_BTMASK))
|
|
|
|
#define DECREF(x) ((((x)>>N_TSHIFT)&~N_BTMASK)|((x)&N_BTMASK))
|
|
|
|
#define TLS_MINIMUM_AVAILABLE 64
|
2008-09-09 15:57:17 +00:00
|
|
|
#define FLS_MAXIMUM_AVAILABLE 128
|
2005-05-08 17:44:37 +00:00
|
|
|
#define REPARSE_GUID_DATA_BUFFER_HEADER_SIZE FIELD_OFFSET(REPARSE_GUID_DATA_BUFFER, GenericReparseBuffer)
|
|
|
|
#define MAXIMUM_REPARSE_DATA_BUFFER_SIZE 16384
|
|
|
|
#define IO_REPARSE_TAG_RESERVED_ZERO 0
|
|
|
|
#define IO_REPARSE_TAG_RESERVED_ONE 1
|
|
|
|
#define IO_REPARSE_TAG_RESERVED_RANGE IO_REPARSE_TAG_RESERVED_ONE
|
|
|
|
#define IsReparseTagMicrosoft(x) ((x)&0x80000000)
|
|
|
|
#define IsReparseTagHighLatency(x) ((x)&0x40000000)
|
|
|
|
#define IsReparseTagNameSurrogate(x) ((x)&0x20000000)
|
|
|
|
#define IO_REPARSE_TAG_VALID_VALUES 0xE000FFFF
|
|
|
|
#define IsReparseTagValid(x) (!((x)&~IO_REPARSE_TAG_VALID_VALUES)&&((x)>IO_REPARSE_TAG_RESERVED_RANGE))
|
|
|
|
#define IO_REPARSE_TAG_SYMBOLIC_LINK IO_REPARSE_TAG_RESERVED_ZERO
|
|
|
|
#define IO_REPARSE_TAG_MOUNT_POINT 0xA0000003
|
2005-12-12 02:05:54 +00:00
|
|
|
#define IO_REPARSE_TAG_SYMLINK 0xA000000CL
|
2005-05-08 17:44:37 +00:00
|
|
|
#ifndef RC_INVOKED
|
|
|
|
typedef DWORD ACCESS_MASK, *PACCESS_MASK;
|
|
|
|
|
|
|
|
#ifdef _GUID_DEFINED
|
|
|
|
# warning _GUID_DEFINED is deprecated, use GUID_DEFINED instead
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! (defined _GUID_DEFINED || defined GUID_DEFINED) /* also defined in basetyps.h */
|
|
|
|
#define GUID_DEFINED
|
|
|
|
typedef struct _GUID {
|
|
|
|
unsigned long Data1;
|
|
|
|
unsigned short Data2;
|
|
|
|
unsigned short Data3;
|
|
|
|
unsigned char Data4[8];
|
|
|
|
} GUID, *REFGUID, *LPGUID;
|
|
|
|
#endif /* GUID_DEFINED */
|
2005-06-19 21:35:57 +00:00
|
|
|
|
2007-04-20 02:30:53 +00:00
|
|
|
#define SYSTEM_LUID { 0x3E7, 0x0 }
|
|
|
|
|
2005-06-19 21:35:57 +00:00
|
|
|
/* ACE Access Types, also in ntifs.h */
|
|
|
|
#define ACCESS_MIN_MS_ACE_TYPE (0x0)
|
|
|
|
#define ACCESS_ALLOWED_ACE_TYPE (0x0)
|
|
|
|
#define ACCESS_DENIED_ACE_TYPE (0x1)
|
|
|
|
#define SYSTEM_AUDIT_ACE_TYPE (0x2)
|
|
|
|
#define SYSTEM_ALARM_ACE_TYPE (0x3)
|
|
|
|
#define ACCESS_MAX_MS_V2_ACE_TYPE (0x3)
|
|
|
|
#define ACCESS_ALLOWED_COMPOUND_ACE_TYPE (0x4)
|
|
|
|
#define ACCESS_MAX_MS_V3_ACE_TYPE (0x4)
|
|
|
|
#define ACCESS_MIN_MS_OBJECT_ACE_TYPE (0x5)
|
|
|
|
#define ACCESS_ALLOWED_OBJECT_ACE_TYPE (0x5)
|
|
|
|
#define ACCESS_DENIED_OBJECT_ACE_TYPE (0x6)
|
|
|
|
#define SYSTEM_AUDIT_OBJECT_ACE_TYPE (0x7)
|
|
|
|
#define SYSTEM_ALARM_OBJECT_ACE_TYPE (0x8)
|
|
|
|
#define ACCESS_MAX_MS_OBJECT_ACE_TYPE (0x8)
|
|
|
|
#define ACCESS_MAX_MS_V4_ACE_TYPE (0x8)
|
|
|
|
#define ACCESS_MAX_MS_ACE_TYPE (0x8)
|
|
|
|
#define ACCESS_ALLOWED_CALLBACK_ACE_TYPE (0x9)
|
|
|
|
#define ACCESS_DENIED_CALLBACK_ACE_TYPE (0xA)
|
|
|
|
#define ACCESS_ALLOWED_CALLBACK_OBJECT_ACE_TYPE (0xB)
|
|
|
|
#define ACCESS_DENIED_CALLBACK_OBJECT_ACE_TYPE (0xC)
|
|
|
|
#define SYSTEM_AUDIT_CALLBACK_ACE_TYPE (0xD)
|
|
|
|
#define SYSTEM_ALARM_CALLBACK_ACE_TYPE (0xE)
|
|
|
|
#define SYSTEM_AUDIT_CALLBACK_OBJECT_ACE_TYPE (0xF)
|
|
|
|
#define SYSTEM_ALARM_CALLBACK_OBJECT_ACE_TYPE (0x10)
|
2006-10-15 16:52:25 +00:00
|
|
|
#define SYSTEM_MANDATORY_LABEL_ACE_TYPE (0x11)
|
|
|
|
#define ACCESS_MAX_MS_V5_ACE_TYPE (0x11)
|
2005-06-19 21:35:57 +00:00
|
|
|
/* end ntifs.h */
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _GENERIC_MAPPING {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACCESS_MASK GenericRead;
|
|
|
|
ACCESS_MASK GenericWrite;
|
|
|
|
ACCESS_MASK GenericExecute;
|
|
|
|
ACCESS_MASK GenericAll;
|
2005-05-08 17:44:37 +00:00
|
|
|
} GENERIC_MAPPING, *PGENERIC_MAPPING;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ACE_HEADER {
|
2010-05-15 16:53:39 +00:00
|
|
|
BYTE AceType;
|
|
|
|
BYTE AceFlags;
|
|
|
|
WORD AceSize;
|
2005-05-08 17:44:37 +00:00
|
|
|
} ACE_HEADER, *PACE_HEADER;
|
2005-11-28 21:40:21 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ACCESS_ALLOWED_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD SidStart;
|
2005-05-08 17:44:37 +00:00
|
|
|
} ACCESS_ALLOWED_ACE, *PACCESS_ALLOWED_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ACCESS_DENIED_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD SidStart;
|
2005-05-08 17:44:37 +00:00
|
|
|
} ACCESS_DENIED_ACE, *PACCESS_DENIED_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SYSTEM_AUDIT_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD SidStart;
|
|
|
|
} SYSTEM_AUDIT_ACE, *PSYSTEM_AUDIT_ACE;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SYSTEM_ALARM_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD SidStart;
|
2005-05-08 17:44:37 +00:00
|
|
|
} SYSTEM_ALARM_ACE,*PSYSTEM_ALARM_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2006-10-15 16:52:25 +00:00
|
|
|
typedef struct _SYSTEM_MANDATORY_LABEL_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD SidStart;
|
2006-10-15 16:52:25 +00:00
|
|
|
} SYSTEM_MANDATORY_LABEL_ACE, *PSYSTEM_MANDATORY_LABEL_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2006-10-15 16:52:25 +00:00
|
|
|
#define SYSTEM_MANDATORY_LABEL_NO_WRITE_UP 0x1
|
|
|
|
#define SYSTEM_MANDATORY_LABEL_NO_READ_UP 0x2
|
|
|
|
#define SYSTEM_MANDATORY_LABEL_NO_EXECUTE_UP 0x4
|
|
|
|
#define SYSTEM_MANDATORY_LABEL_VALID_MASK (SYSTEM_MANDATORY_LABEL_NO_WRITE_UP | SYSTEM_MANDATORY_LABEL_NO_READ_UP | SYSTEM_MANDATORY_LABEL_NO_EXECUTE_UP)
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ACCESS_ALLOWED_OBJECT_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD Flags;
|
|
|
|
GUID ObjectType;
|
|
|
|
GUID InheritedObjectType;
|
|
|
|
DWORD SidStart;
|
2005-05-08 17:44:37 +00:00
|
|
|
} ACCESS_ALLOWED_OBJECT_ACE,*PACCESS_ALLOWED_OBJECT_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ACCESS_DENIED_OBJECT_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD Flags;
|
|
|
|
GUID ObjectType;
|
|
|
|
GUID InheritedObjectType;
|
|
|
|
DWORD SidStart;
|
2005-05-08 17:44:37 +00:00
|
|
|
} ACCESS_DENIED_OBJECT_ACE,*PACCESS_DENIED_OBJECT_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SYSTEM_AUDIT_OBJECT_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD Flags;
|
|
|
|
GUID ObjectType;
|
|
|
|
GUID InheritedObjectType;
|
|
|
|
DWORD SidStart;
|
2005-05-08 17:44:37 +00:00
|
|
|
} SYSTEM_AUDIT_OBJECT_ACE,*PSYSTEM_AUDIT_OBJECT_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SYSTEM_ALARM_OBJECT_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD Flags;
|
|
|
|
GUID ObjectType;
|
|
|
|
GUID InheritedObjectType;
|
|
|
|
DWORD SidStart;
|
2005-05-08 17:44:37 +00:00
|
|
|
} SYSTEM_ALARM_OBJECT_ACE,*PSYSTEM_ALARM_OBJECT_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2006-03-09 20:15:11 +00:00
|
|
|
typedef struct _ACCESS_ALLOWED_CALLBACK_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD SidStart;
|
2006-03-09 20:15:11 +00:00
|
|
|
} ACCESS_ALLOWED_CALLBACK_ACE, *PACCESS_ALLOWED_CALLBACK_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2006-03-09 20:15:11 +00:00
|
|
|
typedef struct _ACCESS_DENIED_CALLBACK_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD SidStart;
|
2006-03-09 20:15:11 +00:00
|
|
|
} ACCESS_DENIED_CALLBACK_ACE, *PACCESS_DENIED_CALLBACK_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2006-03-09 20:15:11 +00:00
|
|
|
typedef struct _SYSTEM_AUDIT_CALLBACK_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD SidStart;
|
2006-03-09 20:15:11 +00:00
|
|
|
} SYSTEM_AUDIT_CALLBACK_ACE, *PSYSTEM_AUDIT_CALLBACK_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2006-03-09 20:15:11 +00:00
|
|
|
typedef struct _SYSTEM_ALARM_CALLBACK_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD SidStart;
|
2006-03-09 20:15:11 +00:00
|
|
|
} SYSTEM_ALARM_CALLBACK_ACE, *PSYSTEM_ALARM_CALLBACK_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2006-03-09 20:15:11 +00:00
|
|
|
typedef struct _ACCESS_ALLOWED_CALLBACK_OBJECT_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD Flags;
|
|
|
|
GUID ObjectType;
|
|
|
|
GUID InheritedObjectType;
|
|
|
|
DWORD SidStart;
|
2006-03-09 20:15:11 +00:00
|
|
|
} ACCESS_ALLOWED_CALLBACK_OBJECT_ACE, *PACCESS_ALLOWED_CALLBACK_OBJECT_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2006-03-09 20:15:11 +00:00
|
|
|
typedef struct _ACCESS_DENIED_CALLBACK_OBJECT_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD Flags;
|
|
|
|
GUID ObjectType;
|
|
|
|
GUID InheritedObjectType;
|
|
|
|
DWORD SidStart;
|
2006-03-09 20:15:11 +00:00
|
|
|
} ACCESS_DENIED_CALLBACK_OBJECT_ACE, *PACCESS_DENIED_CALLBACK_OBJECT_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2006-03-09 20:15:11 +00:00
|
|
|
typedef struct _SYSTEM_AUDIT_CALLBACK_OBJECT_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD Flags;
|
|
|
|
GUID ObjectType;
|
|
|
|
GUID InheritedObjectType;
|
|
|
|
DWORD SidStart;
|
2006-03-09 20:15:11 +00:00
|
|
|
} SYSTEM_AUDIT_CALLBACK_OBJECT_ACE, *PSYSTEM_AUDIT_CALLBACK_OBJECT_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2006-03-09 20:15:11 +00:00
|
|
|
typedef struct _SYSTEM_ALARM_CALLBACK_OBJECT_ACE {
|
2010-05-15 16:53:39 +00:00
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD Flags;
|
|
|
|
GUID ObjectType;
|
|
|
|
GUID InheritedObjectType;
|
|
|
|
DWORD SidStart;
|
2006-03-09 20:15:11 +00:00
|
|
|
} SYSTEM_ALARM_CALLBACK_OBJECT_ACE, *PSYSTEM_ALARM_CALLBACK_OBJECT_ACE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ACL {
|
2010-05-15 16:53:39 +00:00
|
|
|
BYTE AclRevision;
|
|
|
|
BYTE Sbz1;
|
|
|
|
WORD AclSize;
|
|
|
|
WORD AceCount;
|
|
|
|
WORD Sbz2;
|
2005-05-08 17:44:37 +00:00
|
|
|
} ACL,*PACL;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
|
|
|
typedef enum _ACL_INFORMATION_CLASS {
|
2009-01-18 06:25:43 +00:00
|
|
|
AclRevisionInformation = 1,
|
2008-09-07 13:49:02 +00:00
|
|
|
AclSizeInformation
|
|
|
|
} ACL_INFORMATION_CLASS;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ACL_REVISION_INFORMATION {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD AclRevision;
|
2010-05-09 22:53:41 +00:00
|
|
|
} ACL_REVISION_INFORMATION, *PACL_REVISION_INFORMATION;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ACL_SIZE_INFORMATION {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD AceCount;
|
|
|
|
DWORD AclBytesInUse;
|
|
|
|
DWORD AclBytesFree;
|
2010-05-09 22:53:41 +00:00
|
|
|
} ACL_SIZE_INFORMATION, *PACL_SIZE_INFORMATION;
|
2005-05-08 17:44:37 +00:00
|
|
|
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
#ifndef _LDT_ENTRY_DEFINED
|
|
|
|
#define _LDT_ENTRY_DEFINED
|
2010-05-15 16:53:39 +00:00
|
|
|
|
|
|
|
typedef struct _LDT_ENTRY {
|
|
|
|
WORD LimitLow;
|
|
|
|
WORD BaseLow;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
BYTE BaseMid;
|
|
|
|
BYTE Flags1;
|
|
|
|
BYTE Flags2;
|
|
|
|
BYTE BaseHi;
|
|
|
|
} Bytes;
|
|
|
|
struct {
|
|
|
|
DWORD BaseMid:8;
|
|
|
|
DWORD Type:5;
|
|
|
|
DWORD Dpl:2;
|
|
|
|
DWORD Pres:1;
|
|
|
|
DWORD LimitHi:4;
|
|
|
|
DWORD Sys:1;
|
|
|
|
DWORD Reserved_0:1;
|
|
|
|
DWORD Default_Big:1;
|
|
|
|
DWORD Granularity:1;
|
|
|
|
DWORD BaseHi:8;
|
|
|
|
} Bits;
|
|
|
|
} HighWord;
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
} LDT_ENTRY, *PLDT_ENTRY, *LPLDT_ENTRY;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
|
|
|
#endif /* _LDT_ENTRY_DEFINED */
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
/* FIXME: add more machines */
|
2008-07-30 07:29:55 +00:00
|
|
|
#if defined(_X86_) && !defined(__PowerPC__)
|
2005-05-08 17:44:37 +00:00
|
|
|
#define SIZE_OF_80387_REGISTERS 80
|
|
|
|
#define CONTEXT_i386 0x10000
|
|
|
|
#define CONTEXT_i486 0x10000
|
|
|
|
#define CONTEXT_CONTROL (CONTEXT_i386|0x00000001L)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_i386|0x00000002L)
|
|
|
|
#define CONTEXT_SEGMENTS (CONTEXT_i386|0x00000004L)
|
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_i386|0x00000008L)
|
|
|
|
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_i386|0x00000010L)
|
|
|
|
#define CONTEXT_EXTENDED_REGISTERS (CONTEXT_i386|0x00000020L)
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL|CONTEXT_INTEGER|CONTEXT_SEGMENTS)
|
|
|
|
#define MAXIMUM_SUPPORTED_EXTENSION 512
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
|
|
|
|
#define EXCEPTION_READ_FAULT 0
|
|
|
|
#define EXCEPTION_WRITE_FAULT 1
|
|
|
|
#define EXCEPTION_EXECUTE_FAULT 8
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _FLOATING_SAVE_AREA {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD ControlWord;
|
|
|
|
DWORD StatusWord;
|
|
|
|
DWORD TagWord;
|
|
|
|
DWORD ErrorOffset;
|
|
|
|
DWORD ErrorSelector;
|
|
|
|
DWORD DataOffset;
|
|
|
|
DWORD DataSelector;
|
|
|
|
BYTE RegisterArea[80];
|
|
|
|
DWORD Cr0NpxState;
|
2010-05-09 22:53:41 +00:00
|
|
|
} FLOATING_SAVE_AREA, *PFLOATING_SAVE_AREA;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _CONTEXT {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD ContextFlags;
|
|
|
|
DWORD Dr0;
|
|
|
|
DWORD Dr1;
|
|
|
|
DWORD Dr2;
|
|
|
|
DWORD Dr3;
|
|
|
|
DWORD Dr6;
|
|
|
|
DWORD Dr7;
|
|
|
|
FLOATING_SAVE_AREA FloatSave;
|
|
|
|
DWORD SegGs;
|
|
|
|
DWORD SegFs;
|
|
|
|
DWORD SegEs;
|
|
|
|
DWORD SegDs;
|
|
|
|
DWORD Edi;
|
|
|
|
DWORD Esi;
|
|
|
|
DWORD Ebx;
|
|
|
|
DWORD Edx;
|
|
|
|
DWORD Ecx;
|
|
|
|
DWORD Eax;
|
|
|
|
DWORD Ebp;
|
|
|
|
DWORD Eip;
|
|
|
|
DWORD SegCs;
|
|
|
|
DWORD EFlags;
|
|
|
|
DWORD Esp;
|
|
|
|
DWORD SegSs;
|
|
|
|
BYTE ExtendedRegisters[MAXIMUM_SUPPORTED_EXTENSION];
|
2005-05-08 17:44:37 +00:00
|
|
|
} CONTEXT;
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
#elif defined(__x86_64__)
|
|
|
|
|
|
|
|
#define CONTEXT_AMD64 0x100000
|
|
|
|
|
|
|
|
#if !defined(RC_INVOKED)
|
|
|
|
#define CONTEXT_CONTROL (CONTEXT_AMD64 | 0x1L)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_AMD64 | 0x2L)
|
|
|
|
#define CONTEXT_SEGMENTS (CONTEXT_AMD64 | 0x4L)
|
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_AMD64 | 0x8L)
|
|
|
|
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_AMD64 | 0x10L)
|
|
|
|
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_FLOATING_POINT)
|
|
|
|
#define CONTEXT_ALL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_SEGMENTS | CONTEXT_FLOATING_POINT | CONTEXT_DEBUG_REGISTERS)
|
|
|
|
|
|
|
|
#define CONTEXT_EXCEPTION_ACTIVE 0x8000000
|
|
|
|
#define CONTEXT_SERVICE_ACTIVE 0x10000000
|
|
|
|
#define CONTEXT_EXCEPTION_REQUEST 0x40000000
|
|
|
|
#define CONTEXT_EXCEPTION_REPORTING 0x80000000
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define INITIAL_MXCSR 0x1f80
|
|
|
|
#define INITIAL_FPCSR 0x027f
|
|
|
|
#define EXCEPTION_READ_FAULT 0
|
|
|
|
#define EXCEPTION_WRITE_FAULT 1
|
|
|
|
#define EXCEPTION_EXECUTE_FAULT 8
|
|
|
|
|
|
|
|
typedef struct DECLSPEC_ALIGN(16) _M128A {
|
|
|
|
ULONGLONG Low;
|
|
|
|
LONGLONG High;
|
|
|
|
} M128A, *PM128A;
|
|
|
|
|
|
|
|
typedef struct _XMM_SAVE_AREA32 {
|
|
|
|
WORD ControlWord;
|
|
|
|
WORD StatusWord;
|
|
|
|
BYTE TagWord;
|
|
|
|
BYTE Reserved1;
|
|
|
|
WORD ErrorOpcode;
|
|
|
|
DWORD ErrorOffset;
|
|
|
|
WORD ErrorSelector;
|
|
|
|
WORD Reserved2;
|
|
|
|
DWORD DataOffset;
|
|
|
|
WORD DataSelector;
|
|
|
|
WORD Reserved3;
|
|
|
|
DWORD MxCsr;
|
|
|
|
DWORD MxCsr_Mask;
|
|
|
|
M128A FloatRegisters[8];
|
|
|
|
M128A XmmRegisters[16];
|
|
|
|
BYTE Reserved4[96];
|
|
|
|
} XMM_SAVE_AREA32, *PXMM_SAVE_AREA32;
|
|
|
|
|
|
|
|
typedef struct DECLSPEC_ALIGN(16) _CONTEXT {
|
|
|
|
DWORD64 P1Home;
|
|
|
|
DWORD64 P2Home;
|
|
|
|
DWORD64 P3Home;
|
|
|
|
DWORD64 P4Home;
|
|
|
|
DWORD64 P5Home;
|
|
|
|
DWORD64 P6Home;
|
|
|
|
|
|
|
|
/* Control flags */
|
|
|
|
DWORD ContextFlags;
|
|
|
|
DWORD MxCsr;
|
|
|
|
|
|
|
|
/* Segment */
|
|
|
|
WORD SegCs;
|
|
|
|
WORD SegDs;
|
|
|
|
WORD SegEs;
|
|
|
|
WORD SegFs;
|
|
|
|
WORD SegGs;
|
|
|
|
WORD SegSs;
|
|
|
|
DWORD EFlags;
|
|
|
|
|
|
|
|
/* Debug */
|
|
|
|
DWORD64 Dr0;
|
|
|
|
DWORD64 Dr1;
|
|
|
|
DWORD64 Dr2;
|
|
|
|
DWORD64 Dr3;
|
|
|
|
DWORD64 Dr6;
|
|
|
|
DWORD64 Dr7;
|
|
|
|
|
|
|
|
/* Integer */
|
|
|
|
DWORD64 Rax;
|
|
|
|
DWORD64 Rcx;
|
|
|
|
DWORD64 Rdx;
|
|
|
|
DWORD64 Rbx;
|
|
|
|
DWORD64 Rsp;
|
|
|
|
DWORD64 Rbp;
|
|
|
|
DWORD64 Rsi;
|
|
|
|
DWORD64 Rdi;
|
|
|
|
DWORD64 R8;
|
|
|
|
DWORD64 R9;
|
|
|
|
DWORD64 R10;
|
|
|
|
DWORD64 R11;
|
|
|
|
DWORD64 R12;
|
|
|
|
DWORD64 R13;
|
|
|
|
DWORD64 R14;
|
|
|
|
DWORD64 R15;
|
|
|
|
|
|
|
|
/* Counter */
|
|
|
|
DWORD64 Rip;
|
|
|
|
|
|
|
|
/* Floating point */
|
|
|
|
union {
|
|
|
|
XMM_SAVE_AREA32 FltSave;
|
|
|
|
struct {
|
|
|
|
M128A Header[2];
|
|
|
|
M128A Legacy[8];
|
|
|
|
M128A Xmm0;
|
|
|
|
M128A Xmm1;
|
|
|
|
M128A Xmm2;
|
|
|
|
M128A Xmm3;
|
|
|
|
M128A Xmm4;
|
|
|
|
M128A Xmm5;
|
|
|
|
M128A Xmm6;
|
|
|
|
M128A Xmm7;
|
|
|
|
M128A Xmm8;
|
|
|
|
M128A Xmm9;
|
|
|
|
M128A Xmm10;
|
|
|
|
M128A Xmm11;
|
|
|
|
M128A Xmm12;
|
|
|
|
M128A Xmm13;
|
|
|
|
M128A Xmm14;
|
|
|
|
M128A Xmm15;
|
|
|
|
} DUMMYSTRUCTNAME;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
|
|
|
|
/* Vector */
|
|
|
|
M128A VectorRegister[26];
|
|
|
|
DWORD64 VectorControl;
|
|
|
|
|
|
|
|
/* Debug control */
|
|
|
|
DWORD64 DebugControl;
|
|
|
|
DWORD64 LastBranchToRip;
|
|
|
|
DWORD64 LastBranchFromRip;
|
|
|
|
DWORD64 LastExceptionToRip;
|
|
|
|
DWORD64 LastExceptionFromRip;
|
2008-12-06 18:31:33 +00:00
|
|
|
} CONTEXT;
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct _KNONVOLATILE_CONTEXT_POINTERS {
|
|
|
|
union {
|
|
|
|
PM128A FloatingContext[16];
|
|
|
|
struct {
|
|
|
|
PM128A Xmm0;
|
|
|
|
PM128A Xmm1;
|
|
|
|
PM128A Xmm2;
|
|
|
|
PM128A Xmm3;
|
|
|
|
PM128A Xmm4;
|
|
|
|
PM128A Xmm5;
|
|
|
|
PM128A Xmm6;
|
|
|
|
PM128A Xmm7;
|
|
|
|
PM128A Xmm8;
|
|
|
|
PM128A Xmm9;
|
|
|
|
PM128A Xmm10;
|
|
|
|
PM128A Xmm11;
|
|
|
|
PM128A Xmm12;
|
|
|
|
PM128A Xmm13;
|
|
|
|
PM128A Xmm14;
|
|
|
|
PM128A Xmm15;
|
2010-06-04 21:50:06 +00:00
|
|
|
} DUMMYSTRUCTNAME;
|
|
|
|
} DUMMYUNIONNAME;
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
|
|
|
|
union {
|
|
|
|
PULONG64 IntegerContext[16];
|
|
|
|
struct {
|
|
|
|
PULONG64 Rax;
|
|
|
|
PULONG64 Rcx;
|
|
|
|
PULONG64 Rdx;
|
|
|
|
PULONG64 Rbx;
|
|
|
|
PULONG64 Rsp;
|
|
|
|
PULONG64 Rbp;
|
|
|
|
PULONG64 Rsi;
|
|
|
|
PULONG64 Rdi;
|
|
|
|
PULONG64 R8;
|
|
|
|
PULONG64 R9;
|
|
|
|
PULONG64 R10;
|
|
|
|
PULONG64 R11;
|
|
|
|
PULONG64 R12;
|
|
|
|
PULONG64 R13;
|
|
|
|
PULONG64 R14;
|
|
|
|
PULONG64 R15;
|
2010-06-04 21:50:06 +00:00
|
|
|
} DUMMYSTRUCTNAME;
|
|
|
|
} DUMMYUNIONNAME2;
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
} KNONVOLATILE_CONTEXT_POINTERS, *PKNONVOLATILE_CONTEXT_POINTERS;
|
|
|
|
|
|
|
|
#define RUNTIME_FUNCTION_INDIRECT 0x1
|
|
|
|
|
merge from amd64 branch. and
35645: Fix some wrong declarations for 64bits. (Samuel Serapión)
35652: More header fixes. (Samuel Serapión)
35950: Implement __readeflags and __writeeflags (Timo Kreuzer)
35951: Remove hacks from __addgsbyte, __addgsword, __addgsdword. (Timo Kreuzer)
36171: Fix TIMERPROC definition. Fix CreateToolbarEx definition. (Samuel Serapión)
36468: Add MemoryBarrier definition for amd64 (Timo Kreuzer)
36469: Fix NetLocalGroupGetMembers prototype. (Samuel Serapión)
36474: Fix ReadProcessMemory and Toolhelp32ReadProcessMemory prototypes. (Samuel Serapión)
36840: fix __rdtsc on amd64 build (Timo Kreuzer)
36898: Fix CryptReleaseContext definition. (Samuel Serapión)
36900: Fix COMBOBOXEXITEA/W noticed by Daniel Verkamp. (Samuel Serapión)
36901: Fix NMHDR definition. noticed by Daniel Verkamp. (Samuel Serapión)
36906: Fix definitions of CDHOOKPROC, PROC, FARPROC, NEARPROC, SYSTEM_INFO, COMPAREITEMSTRUCT, COPYDATASTRUCT, DELETEITEMSTRUCT, DRAWITEMSTRUCT, MENUITEMINFOA/W, HELPINFO, MSGBOXPARAMSA/W, MOUSEHOOKSTRUCT, DROPSTRUCT, KBDLLHOOKSTRUCT, GetProcessAffinityMask, SetProcessAffinityMask, DragObject, InsertMenuA/W, ModifyMenuA/W, WinHelpA/W, RT_GROUP_CURSOR, RT_GROUP_ICON (Daniel Verkamp.)
36953: Fix AFD compilation for 64-bit (treat handles as ULONG_PTR-sized). Also correct Winsock's SOCKET definition (Stefan Ginsberg)
37307: Add UNWIND_HISTORY_TABLE_ENTRY and UNWIND_HISTORY_TABLE. (Timo Kreuzer)
37875: Inlcude excpt.h in winnt.h. (Timo Kreuzer)
37908: Fix definition of SOCKET. (Timo Kreuzer)
37926: fix *HOOKPROC definition. Add 64 bit BitTest functions. (Timo Kreuzer)
38072: Fix FARPROC, NEARPROC, PROC definitions (Samuel Serapión)
38091: Fix some 64bit portability issues. (Samuel Serapión)
38093: Hack for wine specific hack. (Samuel Serapión)
38095: Fix packing for commdlg. (Samuel Serapión)
38260: Fix EDITSTREAM structure. (Samuel Serapión)
38263: Fix definitions of WAVEOPENDESC, WAVEHDR structures. Fix prototypes for DefDriverProc, waveOutMessage, waveOutGetDevCapsA/W, waveInGetDevCapsA/W, waveInMessage, midiStreamOpen, midiOutGetDevCapsA/W, midiOutOpen, midiOutMessage, midiInGetDevCapsA/W, midiInOpen, midiInMessage, auxGetDevCapsA/W, auxOutMessage, mixerGetDevCapsA/W, mixerOpen, timeSetEvent, joyGetDevCapsA/W, mciSendCommandA/W, and mciGetCreatorTask. (Samuel Serapión)
38478: Fix HeapAlloc prototype. (Timo Kreuzer)
39468: Fix some definitions in mmsystem.h (Timo Kreuzer)
svn path=/trunk/; revision=39471
2009-02-08 03:41:29 +00:00
|
|
|
typedef struct _RUNTIME_FUNCTION {
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
DWORD BeginAddress;
|
|
|
|
DWORD EndAddress;
|
|
|
|
DWORD UnwindData;
|
merge from amd64 branch. and
35645: Fix some wrong declarations for 64bits. (Samuel Serapión)
35652: More header fixes. (Samuel Serapión)
35950: Implement __readeflags and __writeeflags (Timo Kreuzer)
35951: Remove hacks from __addgsbyte, __addgsword, __addgsdword. (Timo Kreuzer)
36171: Fix TIMERPROC definition. Fix CreateToolbarEx definition. (Samuel Serapión)
36468: Add MemoryBarrier definition for amd64 (Timo Kreuzer)
36469: Fix NetLocalGroupGetMembers prototype. (Samuel Serapión)
36474: Fix ReadProcessMemory and Toolhelp32ReadProcessMemory prototypes. (Samuel Serapión)
36840: fix __rdtsc on amd64 build (Timo Kreuzer)
36898: Fix CryptReleaseContext definition. (Samuel Serapión)
36900: Fix COMBOBOXEXITEA/W noticed by Daniel Verkamp. (Samuel Serapión)
36901: Fix NMHDR definition. noticed by Daniel Verkamp. (Samuel Serapión)
36906: Fix definitions of CDHOOKPROC, PROC, FARPROC, NEARPROC, SYSTEM_INFO, COMPAREITEMSTRUCT, COPYDATASTRUCT, DELETEITEMSTRUCT, DRAWITEMSTRUCT, MENUITEMINFOA/W, HELPINFO, MSGBOXPARAMSA/W, MOUSEHOOKSTRUCT, DROPSTRUCT, KBDLLHOOKSTRUCT, GetProcessAffinityMask, SetProcessAffinityMask, DragObject, InsertMenuA/W, ModifyMenuA/W, WinHelpA/W, RT_GROUP_CURSOR, RT_GROUP_ICON (Daniel Verkamp.)
36953: Fix AFD compilation for 64-bit (treat handles as ULONG_PTR-sized). Also correct Winsock's SOCKET definition (Stefan Ginsberg)
37307: Add UNWIND_HISTORY_TABLE_ENTRY and UNWIND_HISTORY_TABLE. (Timo Kreuzer)
37875: Inlcude excpt.h in winnt.h. (Timo Kreuzer)
37908: Fix definition of SOCKET. (Timo Kreuzer)
37926: fix *HOOKPROC definition. Add 64 bit BitTest functions. (Timo Kreuzer)
38072: Fix FARPROC, NEARPROC, PROC definitions (Samuel Serapión)
38091: Fix some 64bit portability issues. (Samuel Serapión)
38093: Hack for wine specific hack. (Samuel Serapión)
38095: Fix packing for commdlg. (Samuel Serapión)
38260: Fix EDITSTREAM structure. (Samuel Serapión)
38263: Fix definitions of WAVEOPENDESC, WAVEHDR structures. Fix prototypes for DefDriverProc, waveOutMessage, waveOutGetDevCapsA/W, waveInGetDevCapsA/W, waveInMessage, midiStreamOpen, midiOutGetDevCapsA/W, midiOutOpen, midiOutMessage, midiInGetDevCapsA/W, midiInOpen, midiInMessage, auxGetDevCapsA/W, auxOutMessage, mixerGetDevCapsA/W, mixerOpen, timeSetEvent, joyGetDevCapsA/W, mciSendCommandA/W, and mciGetCreatorTask. (Samuel Serapión)
38478: Fix HeapAlloc prototype. (Timo Kreuzer)
39468: Fix some definitions in mmsystem.h (Timo Kreuzer)
svn path=/trunk/; revision=39471
2009-02-08 03:41:29 +00:00
|
|
|
} RUNTIME_FUNCTION,*PRUNTIME_FUNCTION;
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
|
merge from amd64 branch. and
35645: Fix some wrong declarations for 64bits. (Samuel Serapión)
35652: More header fixes. (Samuel Serapión)
35950: Implement __readeflags and __writeeflags (Timo Kreuzer)
35951: Remove hacks from __addgsbyte, __addgsword, __addgsdword. (Timo Kreuzer)
36171: Fix TIMERPROC definition. Fix CreateToolbarEx definition. (Samuel Serapión)
36468: Add MemoryBarrier definition for amd64 (Timo Kreuzer)
36469: Fix NetLocalGroupGetMembers prototype. (Samuel Serapión)
36474: Fix ReadProcessMemory and Toolhelp32ReadProcessMemory prototypes. (Samuel Serapión)
36840: fix __rdtsc on amd64 build (Timo Kreuzer)
36898: Fix CryptReleaseContext definition. (Samuel Serapión)
36900: Fix COMBOBOXEXITEA/W noticed by Daniel Verkamp. (Samuel Serapión)
36901: Fix NMHDR definition. noticed by Daniel Verkamp. (Samuel Serapión)
36906: Fix definitions of CDHOOKPROC, PROC, FARPROC, NEARPROC, SYSTEM_INFO, COMPAREITEMSTRUCT, COPYDATASTRUCT, DELETEITEMSTRUCT, DRAWITEMSTRUCT, MENUITEMINFOA/W, HELPINFO, MSGBOXPARAMSA/W, MOUSEHOOKSTRUCT, DROPSTRUCT, KBDLLHOOKSTRUCT, GetProcessAffinityMask, SetProcessAffinityMask, DragObject, InsertMenuA/W, ModifyMenuA/W, WinHelpA/W, RT_GROUP_CURSOR, RT_GROUP_ICON (Daniel Verkamp.)
36953: Fix AFD compilation for 64-bit (treat handles as ULONG_PTR-sized). Also correct Winsock's SOCKET definition (Stefan Ginsberg)
37307: Add UNWIND_HISTORY_TABLE_ENTRY and UNWIND_HISTORY_TABLE. (Timo Kreuzer)
37875: Inlcude excpt.h in winnt.h. (Timo Kreuzer)
37908: Fix definition of SOCKET. (Timo Kreuzer)
37926: fix *HOOKPROC definition. Add 64 bit BitTest functions. (Timo Kreuzer)
38072: Fix FARPROC, NEARPROC, PROC definitions (Samuel Serapión)
38091: Fix some 64bit portability issues. (Samuel Serapión)
38093: Hack for wine specific hack. (Samuel Serapión)
38095: Fix packing for commdlg. (Samuel Serapión)
38260: Fix EDITSTREAM structure. (Samuel Serapión)
38263: Fix definitions of WAVEOPENDESC, WAVEHDR structures. Fix prototypes for DefDriverProc, waveOutMessage, waveOutGetDevCapsA/W, waveInGetDevCapsA/W, waveInMessage, midiStreamOpen, midiOutGetDevCapsA/W, midiOutOpen, midiOutMessage, midiInGetDevCapsA/W, midiInOpen, midiInMessage, auxGetDevCapsA/W, auxOutMessage, mixerGetDevCapsA/W, mixerOpen, timeSetEvent, joyGetDevCapsA/W, mciSendCommandA/W, and mciGetCreatorTask. (Samuel Serapión)
38478: Fix HeapAlloc prototype. (Timo Kreuzer)
39468: Fix some definitions in mmsystem.h (Timo Kreuzer)
svn path=/trunk/; revision=39471
2009-02-08 03:41:29 +00:00
|
|
|
#define UNWIND_HISTORY_TABLE_SIZE 12
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
|
merge from amd64 branch. and
35645: Fix some wrong declarations for 64bits. (Samuel Serapión)
35652: More header fixes. (Samuel Serapión)
35950: Implement __readeflags and __writeeflags (Timo Kreuzer)
35951: Remove hacks from __addgsbyte, __addgsword, __addgsdword. (Timo Kreuzer)
36171: Fix TIMERPROC definition. Fix CreateToolbarEx definition. (Samuel Serapión)
36468: Add MemoryBarrier definition for amd64 (Timo Kreuzer)
36469: Fix NetLocalGroupGetMembers prototype. (Samuel Serapión)
36474: Fix ReadProcessMemory and Toolhelp32ReadProcessMemory prototypes. (Samuel Serapión)
36840: fix __rdtsc on amd64 build (Timo Kreuzer)
36898: Fix CryptReleaseContext definition. (Samuel Serapión)
36900: Fix COMBOBOXEXITEA/W noticed by Daniel Verkamp. (Samuel Serapión)
36901: Fix NMHDR definition. noticed by Daniel Verkamp. (Samuel Serapión)
36906: Fix definitions of CDHOOKPROC, PROC, FARPROC, NEARPROC, SYSTEM_INFO, COMPAREITEMSTRUCT, COPYDATASTRUCT, DELETEITEMSTRUCT, DRAWITEMSTRUCT, MENUITEMINFOA/W, HELPINFO, MSGBOXPARAMSA/W, MOUSEHOOKSTRUCT, DROPSTRUCT, KBDLLHOOKSTRUCT, GetProcessAffinityMask, SetProcessAffinityMask, DragObject, InsertMenuA/W, ModifyMenuA/W, WinHelpA/W, RT_GROUP_CURSOR, RT_GROUP_ICON (Daniel Verkamp.)
36953: Fix AFD compilation for 64-bit (treat handles as ULONG_PTR-sized). Also correct Winsock's SOCKET definition (Stefan Ginsberg)
37307: Add UNWIND_HISTORY_TABLE_ENTRY and UNWIND_HISTORY_TABLE. (Timo Kreuzer)
37875: Inlcude excpt.h in winnt.h. (Timo Kreuzer)
37908: Fix definition of SOCKET. (Timo Kreuzer)
37926: fix *HOOKPROC definition. Add 64 bit BitTest functions. (Timo Kreuzer)
38072: Fix FARPROC, NEARPROC, PROC definitions (Samuel Serapión)
38091: Fix some 64bit portability issues. (Samuel Serapión)
38093: Hack for wine specific hack. (Samuel Serapión)
38095: Fix packing for commdlg. (Samuel Serapión)
38260: Fix EDITSTREAM structure. (Samuel Serapión)
38263: Fix definitions of WAVEOPENDESC, WAVEHDR structures. Fix prototypes for DefDriverProc, waveOutMessage, waveOutGetDevCapsA/W, waveInGetDevCapsA/W, waveInMessage, midiStreamOpen, midiOutGetDevCapsA/W, midiOutOpen, midiOutMessage, midiInGetDevCapsA/W, midiInOpen, midiInMessage, auxGetDevCapsA/W, auxOutMessage, mixerGetDevCapsA/W, mixerOpen, timeSetEvent, joyGetDevCapsA/W, mciSendCommandA/W, and mciGetCreatorTask. (Samuel Serapión)
38478: Fix HeapAlloc prototype. (Timo Kreuzer)
39468: Fix some definitions in mmsystem.h (Timo Kreuzer)
svn path=/trunk/; revision=39471
2009-02-08 03:41:29 +00:00
|
|
|
typedef struct _UNWIND_HISTORY_TABLE_ENTRY
|
|
|
|
{
|
|
|
|
ULONG64 ImageBase;
|
|
|
|
PRUNTIME_FUNCTION FunctionEntry;
|
|
|
|
} UNWIND_HISTORY_TABLE_ENTRY, *PUNWIND_HISTORY_TABLE_ENTRY;
|
|
|
|
|
|
|
|
typedef struct _UNWIND_HISTORY_TABLE
|
|
|
|
{
|
|
|
|
ULONG Count;
|
|
|
|
UCHAR Search;
|
|
|
|
ULONG64 LowAddress;
|
|
|
|
ULONG64 HighAddress;
|
|
|
|
UNWIND_HISTORY_TABLE_ENTRY Entry[UNWIND_HISTORY_TABLE_SIZE];
|
|
|
|
} UNWIND_HISTORY_TABLE, *PUNWIND_HISTORY_TABLE;
|
|
|
|
|
|
|
|
typedef PRUNTIME_FUNCTION (*PGET_RUNTIME_FUNCTION_CALLBACK)(DWORD64 ControlPc,PVOID Context);
|
|
|
|
typedef DWORD (*POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK)(HANDLE Process,PVOID TableAddress,PDWORD Entries,PRUNTIME_FUNCTION *Functions);
|
|
|
|
|
|
|
|
#define OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME "OutOfProcessFunctionTableCallback"
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
|
|
|
|
NTSYSAPI
|
|
|
|
VOID
|
|
|
|
__cdecl
|
2008-12-06 18:31:33 +00:00
|
|
|
RtlRestoreContext(struct _CONTEXT *ContextRecord,
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
struct _EXCEPTION_RECORD *ExceptionRecord);
|
|
|
|
|
|
|
|
NTSYSAPI
|
|
|
|
BOOLEAN
|
|
|
|
__cdecl
|
|
|
|
RtlAddFunctionTable(PRUNTIME_FUNCTION FunctionTable,
|
|
|
|
DWORD EntryCount,
|
|
|
|
DWORD64 BaseAddress);
|
|
|
|
|
|
|
|
NTSYSAPI
|
|
|
|
BOOLEAN
|
|
|
|
__cdecl
|
|
|
|
RtlInstallFunctionTableCallback(DWORD64 TableIdentifier,
|
|
|
|
DWORD64 BaseAddress,
|
|
|
|
DWORD Length,
|
|
|
|
PGET_RUNTIME_FUNCTION_CALLBACK Callback,
|
|
|
|
PVOID Context,
|
|
|
|
PCWSTR OutOfProcessCallbackDll);
|
|
|
|
|
|
|
|
NTSYSAPI
|
|
|
|
BOOLEAN
|
|
|
|
__cdecl
|
|
|
|
RtlDeleteFunctionTable(PRUNTIME_FUNCTION FunctionTable);
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#elif defined(_PPC_)
|
|
|
|
#define CONTEXT_CONTROL 1L
|
|
|
|
#define CONTEXT_FLOATING_POINT 2L
|
|
|
|
#define CONTEXT_INTEGER 4L
|
|
|
|
#define CONTEXT_DEBUG_REGISTERS 8L
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL|CONTEXT_FLOATING_POINT|CONTEXT_INTEGER)
|
2007-10-06 07:53:20 +00:00
|
|
|
typedef struct _FLOATING_SAVE_AREA
|
|
|
|
{
|
2005-05-08 17:44:37 +00:00
|
|
|
double Fpr0;
|
|
|
|
double Fpr1;
|
|
|
|
double Fpr2;
|
|
|
|
double Fpr3;
|
|
|
|
double Fpr4;
|
|
|
|
double Fpr5;
|
|
|
|
double Fpr6;
|
|
|
|
double Fpr7;
|
|
|
|
double Fpr8;
|
|
|
|
double Fpr9;
|
|
|
|
double Fpr10;
|
|
|
|
double Fpr11;
|
|
|
|
double Fpr12;
|
|
|
|
double Fpr13;
|
|
|
|
double Fpr14;
|
|
|
|
double Fpr15;
|
|
|
|
double Fpr16;
|
|
|
|
double Fpr17;
|
|
|
|
double Fpr18;
|
|
|
|
double Fpr19;
|
|
|
|
double Fpr20;
|
|
|
|
double Fpr21;
|
|
|
|
double Fpr22;
|
|
|
|
double Fpr23;
|
|
|
|
double Fpr24;
|
|
|
|
double Fpr25;
|
|
|
|
double Fpr26;
|
|
|
|
double Fpr27;
|
|
|
|
double Fpr28;
|
|
|
|
double Fpr29;
|
|
|
|
double Fpr30;
|
|
|
|
double Fpr31;
|
|
|
|
double Fpscr;
|
2007-10-06 07:53:20 +00:00
|
|
|
} FLOATING_SAVE_AREA;
|
|
|
|
|
|
|
|
typedef struct _CONTEXT {
|
|
|
|
FLOATING_SAVE_AREA FloatSave;
|
2005-05-08 17:44:37 +00:00
|
|
|
DWORD Gpr0;
|
|
|
|
DWORD Gpr1;
|
|
|
|
DWORD Gpr2;
|
|
|
|
DWORD Gpr3;
|
|
|
|
DWORD Gpr4;
|
|
|
|
DWORD Gpr5;
|
|
|
|
DWORD Gpr6;
|
|
|
|
DWORD Gpr7;
|
|
|
|
DWORD Gpr8;
|
|
|
|
DWORD Gpr9;
|
|
|
|
DWORD Gpr10;
|
|
|
|
DWORD Gpr11;
|
|
|
|
DWORD Gpr12;
|
|
|
|
DWORD Gpr13;
|
|
|
|
DWORD Gpr14;
|
|
|
|
DWORD Gpr15;
|
|
|
|
DWORD Gpr16;
|
|
|
|
DWORD Gpr17;
|
|
|
|
DWORD Gpr18;
|
|
|
|
DWORD Gpr19;
|
|
|
|
DWORD Gpr20;
|
|
|
|
DWORD Gpr21;
|
|
|
|
DWORD Gpr22;
|
|
|
|
DWORD Gpr23;
|
|
|
|
DWORD Gpr24;
|
|
|
|
DWORD Gpr25;
|
|
|
|
DWORD Gpr26;
|
|
|
|
DWORD Gpr27;
|
|
|
|
DWORD Gpr28;
|
|
|
|
DWORD Gpr29;
|
|
|
|
DWORD Gpr30;
|
|
|
|
DWORD Gpr31;
|
|
|
|
DWORD Cr;
|
|
|
|
DWORD Xer;
|
|
|
|
DWORD Msr;
|
|
|
|
DWORD Iar;
|
|
|
|
DWORD Lr;
|
|
|
|
DWORD Ctr;
|
|
|
|
DWORD ContextFlags;
|
|
|
|
DWORD Fill[3];
|
|
|
|
DWORD Dr0;
|
|
|
|
DWORD Dr1;
|
|
|
|
DWORD Dr2;
|
|
|
|
DWORD Dr3;
|
|
|
|
DWORD Dr4;
|
|
|
|
DWORD Dr5;
|
|
|
|
DWORD Dr6;
|
|
|
|
DWORD Dr7;
|
|
|
|
} CONTEXT;
|
|
|
|
#elif defined(_ALPHA_)
|
|
|
|
#define CONTEXT_ALPHA 0x20000
|
|
|
|
#define CONTEXT_CONTROL (CONTEXT_ALPHA|1L)
|
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_ALPHA|2L)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_ALPHA|4L)
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL|CONTEXT_FLOATING_POINT|CONTEXT_INTEGER)
|
|
|
|
typedef struct _CONTEXT {
|
|
|
|
ULONGLONG FltF0;
|
|
|
|
ULONGLONG FltF1;
|
|
|
|
ULONGLONG FltF2;
|
|
|
|
ULONGLONG FltF3;
|
|
|
|
ULONGLONG FltF4;
|
|
|
|
ULONGLONG FltF5;
|
|
|
|
ULONGLONG FltF6;
|
|
|
|
ULONGLONG FltF7;
|
|
|
|
ULONGLONG FltF8;
|
|
|
|
ULONGLONG FltF9;
|
|
|
|
ULONGLONG FltF10;
|
|
|
|
ULONGLONG FltF11;
|
|
|
|
ULONGLONG FltF12;
|
|
|
|
ULONGLONG FltF13;
|
|
|
|
ULONGLONG FltF14;
|
|
|
|
ULONGLONG FltF15;
|
|
|
|
ULONGLONG FltF16;
|
|
|
|
ULONGLONG FltF17;
|
|
|
|
ULONGLONG FltF18;
|
|
|
|
ULONGLONG FltF19;
|
|
|
|
ULONGLONG FltF20;
|
|
|
|
ULONGLONG FltF21;
|
|
|
|
ULONGLONG FltF22;
|
|
|
|
ULONGLONG FltF23;
|
|
|
|
ULONGLONG FltF24;
|
|
|
|
ULONGLONG FltF25;
|
|
|
|
ULONGLONG FltF26;
|
|
|
|
ULONGLONG FltF27;
|
|
|
|
ULONGLONG FltF28;
|
|
|
|
ULONGLONG FltF29;
|
|
|
|
ULONGLONG FltF30;
|
|
|
|
ULONGLONG FltF31;
|
|
|
|
ULONGLONG IntV0;
|
|
|
|
ULONGLONG IntT0;
|
|
|
|
ULONGLONG IntT1;
|
|
|
|
ULONGLONG IntT2;
|
|
|
|
ULONGLONG IntT3;
|
|
|
|
ULONGLONG IntT4;
|
|
|
|
ULONGLONG IntT5;
|
|
|
|
ULONGLONG IntT6;
|
|
|
|
ULONGLONG IntT7;
|
|
|
|
ULONGLONG IntS0;
|
|
|
|
ULONGLONG IntS1;
|
|
|
|
ULONGLONG IntS2;
|
|
|
|
ULONGLONG IntS3;
|
|
|
|
ULONGLONG IntS4;
|
|
|
|
ULONGLONG IntS5;
|
|
|
|
ULONGLONG IntFp;
|
|
|
|
ULONGLONG IntA0;
|
|
|
|
ULONGLONG IntA1;
|
|
|
|
ULONGLONG IntA2;
|
|
|
|
ULONGLONG IntA3;
|
|
|
|
ULONGLONG IntA4;
|
|
|
|
ULONGLONG IntA5;
|
|
|
|
ULONGLONG IntT8;
|
|
|
|
ULONGLONG IntT9;
|
|
|
|
ULONGLONG IntT10;
|
|
|
|
ULONGLONG IntT11;
|
|
|
|
ULONGLONG IntRa;
|
|
|
|
ULONGLONG IntT12;
|
|
|
|
ULONGLONG IntAt;
|
|
|
|
ULONGLONG IntGp;
|
|
|
|
ULONGLONG IntSp;
|
|
|
|
ULONGLONG IntZero;
|
|
|
|
ULONGLONG Fpcr;
|
|
|
|
ULONGLONG SoftFpcr;
|
|
|
|
ULONGLONG Fir;
|
|
|
|
DWORD Psr;
|
|
|
|
DWORD ContextFlags;
|
|
|
|
DWORD Fill[4];
|
|
|
|
} CONTEXT;
|
|
|
|
#elif defined(SHx)
|
|
|
|
|
|
|
|
/* These are the debug or break registers on the SH3 */
|
|
|
|
typedef struct _DEBUG_REGISTERS {
|
|
|
|
ULONG BarA;
|
|
|
|
UCHAR BasrA;
|
|
|
|
UCHAR BamrA;
|
|
|
|
USHORT BbrA;
|
|
|
|
ULONG BarB;
|
|
|
|
UCHAR BasrB;
|
|
|
|
UCHAR BamrB;
|
|
|
|
USHORT BbrB;
|
|
|
|
ULONG BdrB;
|
|
|
|
ULONG BdmrB;
|
|
|
|
USHORT Brcr;
|
|
|
|
USHORT Align;
|
|
|
|
} DEBUG_REGISTERS, *PDEBUG_REGISTERS;
|
|
|
|
|
|
|
|
/* The following flags control the contents of the CONTEXT structure. */
|
|
|
|
|
|
|
|
#define CONTEXT_SH3 0x00000040
|
|
|
|
#define CONTEXT_SH4 0x000000c0 /* CONTEXT_SH3 | 0x80 - must contain the SH3 bits */
|
|
|
|
|
|
|
|
#ifdef SH3
|
|
|
|
#define CONTEXT_CONTROL (CONTEXT_SH3 | 0x00000001L)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_SH3 | 0x00000002L)
|
|
|
|
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_SH3 | 0x00000008L)
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_DEBUG_REGISTERS)
|
|
|
|
#else /* SH4 */
|
|
|
|
#define CONTEXT_CONTROL (CONTEXT_SH4 | 0x00000001L)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_SH4 | 0x00000002L)
|
|
|
|
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_SH4 | 0x00000008L)
|
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_SH4 | 0x00000004L)
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_DEBUG_REGISTERS | CONTEXT_FLOATING_POINT)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Context Frame */
|
|
|
|
|
|
|
|
/* This frame is used to store a limited processor context into the */
|
|
|
|
/* Thread structure for CPUs which have no floating point support. */
|
|
|
|
|
|
|
|
typedef struct _CONTEXT {
|
|
|
|
/* The flags values within this flag control the contents of */
|
|
|
|
/* a CONTEXT record. */
|
|
|
|
|
|
|
|
/* If the context record is used as an input parameter, then */
|
|
|
|
/* for each portion of the context record controlled by a flag */
|
|
|
|
/* whose value is set, it is assumed that that portion of the */
|
|
|
|
/* context record contains valid context. If the context record */
|
|
|
|
/* is being used to modify a thread's context, then only that */
|
|
|
|
/* portion of the threads context will be modified. */
|
|
|
|
|
|
|
|
/* If the context record is used as an IN OUT parameter to capture */
|
|
|
|
/* the context of a thread, then only those portions of the thread's */
|
|
|
|
/* context corresponding to set flags will be returned. */
|
|
|
|
|
|
|
|
/* The context record is never used as an OUT only parameter. */
|
|
|
|
|
|
|
|
|
|
|
|
ULONG ContextFlags;
|
|
|
|
|
|
|
|
/* This section is specified/returned if the ContextFlags word contains */
|
|
|
|
/* the flag CONTEXT_INTEGER. */
|
|
|
|
|
|
|
|
/* N.B. The registers RA and R15 are defined in this section, but are */
|
|
|
|
/* considered part of the control context rather than part of the integer */
|
|
|
|
/* context. */
|
|
|
|
|
|
|
|
ULONG PR;
|
|
|
|
ULONG MACH;
|
|
|
|
ULONG MACL;
|
|
|
|
ULONG GBR;
|
|
|
|
ULONG R0;
|
|
|
|
ULONG R1;
|
|
|
|
ULONG R2;
|
|
|
|
ULONG R3;
|
|
|
|
ULONG R4;
|
|
|
|
ULONG R5;
|
|
|
|
ULONG R6;
|
|
|
|
ULONG R7;
|
|
|
|
ULONG R8;
|
|
|
|
ULONG R9;
|
|
|
|
ULONG R10;
|
|
|
|
ULONG R11;
|
|
|
|
ULONG R12;
|
|
|
|
ULONG R13;
|
|
|
|
ULONG R14;
|
|
|
|
ULONG R15;
|
|
|
|
|
|
|
|
/* This section is specified/returned if the ContextFlags word contains */
|
|
|
|
/* the flag CONTEXT_CONTROL. */
|
|
|
|
|
|
|
|
/* N.B. The registers r15 and ra are defined in the integer section, */
|
|
|
|
/* but are considered part of the control context rather than part of */
|
|
|
|
/* the integer context. */
|
|
|
|
|
|
|
|
ULONG Fir;
|
|
|
|
ULONG Psr;
|
|
|
|
|
|
|
|
#if !defined(SH3e) && !defined(SH4)
|
|
|
|
ULONG OldStuff[2];
|
|
|
|
DEBUG_REGISTERS DebugRegisters;
|
|
|
|
#else
|
|
|
|
ULONG Fpscr;
|
|
|
|
ULONG Fpul;
|
|
|
|
ULONG FRegs[16];
|
|
|
|
#if defined(SH4)
|
|
|
|
ULONG xFRegs[16];
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
} CONTEXT;
|
|
|
|
|
2007-09-03 08:50:06 +00:00
|
|
|
#elif defined(_MIPS_)
|
2005-05-08 17:44:37 +00:00
|
|
|
|
|
|
|
/* The following flags control the contents of the CONTEXT structure. */
|
|
|
|
|
|
|
|
#define CONTEXT_R4000 0x00010000 /* r4000 context */
|
|
|
|
|
|
|
|
#define CONTEXT_CONTROL (CONTEXT_R4000 | 0x00000001L)
|
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_R4000 | 0x00000002L)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_R4000 | 0x00000004L)
|
|
|
|
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
|
|
|
|
|
|
|
|
/* Context Frame */
|
|
|
|
|
|
|
|
/* N.B. This frame must be exactly a multiple of 16 bytes in length. */
|
|
|
|
|
|
|
|
/* This frame has a several purposes: 1) it is used as an argument to */
|
|
|
|
/* NtContinue, 2) it is used to constuct a call frame for APC delivery, */
|
|
|
|
/* 3) it is used to construct a call frame for exception dispatching */
|
|
|
|
/* in user mode, and 4) it is used in the user level thread creation */
|
|
|
|
/* routines. */
|
|
|
|
|
|
|
|
/* The layout of the record conforms to a standard call frame. */
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _CONTEXT {
|
|
|
|
|
|
|
|
/* This section is always present and is used as an argument build */
|
|
|
|
/* area. */
|
|
|
|
|
|
|
|
DWORD Argument[4];
|
|
|
|
|
|
|
|
/* This section is specified/returned if the ContextFlags word contains */
|
|
|
|
/* the flag CONTEXT_FLOATING_POINT. */
|
|
|
|
|
|
|
|
DWORD FltF0;
|
|
|
|
DWORD FltF1;
|
|
|
|
DWORD FltF2;
|
|
|
|
DWORD FltF3;
|
|
|
|
DWORD FltF4;
|
|
|
|
DWORD FltF5;
|
|
|
|
DWORD FltF6;
|
|
|
|
DWORD FltF7;
|
|
|
|
DWORD FltF8;
|
|
|
|
DWORD FltF9;
|
|
|
|
DWORD FltF10;
|
|
|
|
DWORD FltF11;
|
|
|
|
DWORD FltF12;
|
|
|
|
DWORD FltF13;
|
|
|
|
DWORD FltF14;
|
|
|
|
DWORD FltF15;
|
|
|
|
DWORD FltF16;
|
|
|
|
DWORD FltF17;
|
|
|
|
DWORD FltF18;
|
|
|
|
DWORD FltF19;
|
|
|
|
DWORD FltF20;
|
|
|
|
DWORD FltF21;
|
|
|
|
DWORD FltF22;
|
|
|
|
DWORD FltF23;
|
|
|
|
DWORD FltF24;
|
|
|
|
DWORD FltF25;
|
|
|
|
DWORD FltF26;
|
|
|
|
DWORD FltF27;
|
|
|
|
DWORD FltF28;
|
|
|
|
DWORD FltF29;
|
|
|
|
DWORD FltF30;
|
|
|
|
DWORD FltF31;
|
|
|
|
|
|
|
|
/* This section is specified/returned if the ContextFlags word contains */
|
|
|
|
/* the flag CONTEXT_INTEGER. */
|
|
|
|
|
|
|
|
/* N.B. The registers gp, sp, and ra are defined in this section, but are */
|
|
|
|
/* considered part of the control context rather than part of the integer */
|
|
|
|
/* context. */
|
|
|
|
|
|
|
|
/* N.B. Register zero is not stored in the frame. */
|
|
|
|
|
|
|
|
DWORD IntZero;
|
|
|
|
DWORD IntAt;
|
|
|
|
DWORD IntV0;
|
|
|
|
DWORD IntV1;
|
|
|
|
DWORD IntA0;
|
|
|
|
DWORD IntA1;
|
|
|
|
DWORD IntA2;
|
|
|
|
DWORD IntA3;
|
|
|
|
DWORD IntT0;
|
|
|
|
DWORD IntT1;
|
|
|
|
DWORD IntT2;
|
|
|
|
DWORD IntT3;
|
|
|
|
DWORD IntT4;
|
|
|
|
DWORD IntT5;
|
|
|
|
DWORD IntT6;
|
|
|
|
DWORD IntT7;
|
|
|
|
DWORD IntS0;
|
|
|
|
DWORD IntS1;
|
|
|
|
DWORD IntS2;
|
|
|
|
DWORD IntS3;
|
|
|
|
DWORD IntS4;
|
|
|
|
DWORD IntS5;
|
|
|
|
DWORD IntS6;
|
|
|
|
DWORD IntS7;
|
|
|
|
DWORD IntT8;
|
|
|
|
DWORD IntT9;
|
|
|
|
DWORD IntK0;
|
|
|
|
DWORD IntK1;
|
|
|
|
DWORD IntGp;
|
|
|
|
DWORD IntSp;
|
|
|
|
DWORD IntS8;
|
|
|
|
DWORD IntRa;
|
|
|
|
DWORD IntLo;
|
|
|
|
DWORD IntHi;
|
|
|
|
|
|
|
|
/* This section is specified/returned if the ContextFlags word contains */
|
|
|
|
/* the flag CONTEXT_FLOATING_POINT. */
|
|
|
|
|
|
|
|
DWORD Fsr;
|
|
|
|
|
|
|
|
/* This section is specified/returned if the ContextFlags word contains */
|
|
|
|
/* the flag CONTEXT_CONTROL. */
|
|
|
|
|
|
|
|
/* N.B. The registers gp, sp, and ra are defined in the integer section, */
|
|
|
|
/* but are considered part of the control context rather than part of */
|
|
|
|
/* the integer context. */
|
|
|
|
|
|
|
|
DWORD Fir;
|
|
|
|
DWORD Psr;
|
|
|
|
|
|
|
|
/* The flags values within this flag control the contents of */
|
|
|
|
/* a CONTEXT record. */
|
|
|
|
|
|
|
|
/* If the context record is used as an input parameter, then */
|
|
|
|
/* for each portion of the context record controlled by a flag */
|
|
|
|
/* whose value is set, it is assumed that that portion of the */
|
|
|
|
/* context record contains valid context. If the context record */
|
|
|
|
/* is being used to modify a thread's context, then only that */
|
|
|
|
/* portion of the threads context will be modified. */
|
|
|
|
|
|
|
|
/* If the context record is used as an IN OUT parameter to capture */
|
|
|
|
/* the context of a thread, then only those portions of the thread's */
|
|
|
|
/* context corresponding to set flags will be returned. */
|
|
|
|
|
|
|
|
/* The context record is never used as an OUT only parameter. */
|
|
|
|
|
|
|
|
DWORD ContextFlags;
|
|
|
|
|
|
|
|
DWORD Fill[2];
|
|
|
|
|
|
|
|
} CONTEXT;
|
|
|
|
#elif defined(ARM)
|
|
|
|
|
2009-07-11 12:35:29 +00:00
|
|
|
#ifndef PAGE_SIZE
|
|
|
|
#define PAGE_SIZE 0x1000 // FIXME: This should probably go elsewhere
|
|
|
|
#endif
|
2009-08-07 17:07:10 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
/* The following flags control the contents of the CONTEXT structure. */
|
|
|
|
|
|
|
|
#define CONTEXT_ARM 0x0000040
|
|
|
|
#define CONTEXT_CONTROL (CONTEXT_ARM | 0x00000001L)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_ARM | 0x00000002L)
|
|
|
|
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER)
|
|
|
|
|
|
|
|
typedef struct _CONTEXT {
|
|
|
|
/* The flags values within this flag control the contents of
|
|
|
|
a CONTEXT record.
|
2005-05-09 01:50:07 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
If the context record is used as an input parameter, then
|
|
|
|
for each portion of the context record controlled by a flag
|
|
|
|
whose value is set, it is assumed that that portion of the
|
|
|
|
context record contains valid context. If the context record
|
|
|
|
is being used to modify a thread's context, then only that
|
|
|
|
portion of the threads context will be modified.
|
2005-05-09 01:50:07 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
If the context record is used as an IN OUT parameter to capture
|
|
|
|
the context of a thread, then only those portions of the thread's
|
|
|
|
context corresponding to set flags will be returned.
|
2005-05-09 01:50:07 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
The context record is never used as an OUT only parameter. */
|
|
|
|
|
|
|
|
ULONG ContextFlags;
|
|
|
|
|
|
|
|
/* This section is specified/returned if the ContextFlags word contains
|
|
|
|
the flag CONTEXT_INTEGER. */
|
|
|
|
ULONG R0;
|
|
|
|
ULONG R1;
|
|
|
|
ULONG R2;
|
|
|
|
ULONG R3;
|
|
|
|
ULONG R4;
|
|
|
|
ULONG R5;
|
|
|
|
ULONG R6;
|
|
|
|
ULONG R7;
|
|
|
|
ULONG R8;
|
|
|
|
ULONG R9;
|
|
|
|
ULONG R10;
|
|
|
|
ULONG R11;
|
|
|
|
ULONG R12;
|
|
|
|
|
|
|
|
ULONG Sp;
|
|
|
|
ULONG Lr;
|
|
|
|
ULONG Pc;
|
|
|
|
ULONG Psr;
|
|
|
|
} CONTEXT;
|
|
|
|
|
|
|
|
#else
|
|
|
|
#error "undefined processor type"
|
|
|
|
#endif
|
|
|
|
typedef CONTEXT *PCONTEXT,*LPCONTEXT;
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
|
|
|
|
#define EXCEPTION_NONCONTINUABLE 1
|
|
|
|
#define EXCEPTION_MAXIMUM_PARAMETERS 15
|
|
|
|
|
2010-05-15 16:53:39 +00:00
|
|
|
typedef struct _EXCEPTION_RECORD {
|
|
|
|
DWORD ExceptionCode;
|
|
|
|
DWORD ExceptionFlags;
|
|
|
|
struct _EXCEPTION_RECORD *ExceptionRecord;
|
|
|
|
PVOID ExceptionAddress;
|
|
|
|
DWORD NumberParameters;
|
|
|
|
ULONG_PTR ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
|
|
|
|
} EXCEPTION_RECORD, *PEXCEPTION_RECORD;
|
|
|
|
|
|
|
|
typedef struct _EXCEPTION_RECORD32 {
|
|
|
|
DWORD ExceptionCode;
|
|
|
|
DWORD ExceptionFlags;
|
|
|
|
DWORD ExceptionRecord;
|
|
|
|
DWORD ExceptionAddress;
|
|
|
|
DWORD NumberParameters;
|
|
|
|
DWORD ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
|
|
|
|
} EXCEPTION_RECORD32,*PEXCEPTION_RECORD32;
|
|
|
|
|
|
|
|
typedef struct _EXCEPTION_RECORD64 {
|
|
|
|
DWORD ExceptionCode;
|
|
|
|
DWORD ExceptionFlags;
|
|
|
|
DWORD64 ExceptionRecord;
|
|
|
|
DWORD64 ExceptionAddress;
|
|
|
|
DWORD NumberParameters;
|
|
|
|
DWORD __unusedAlignment;
|
|
|
|
DWORD64 ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
|
|
|
|
} EXCEPTION_RECORD64,*PEXCEPTION_RECORD64;
|
|
|
|
|
|
|
|
typedef struct _EXCEPTION_POINTERS {
|
|
|
|
PEXCEPTION_RECORD ExceptionRecord;
|
|
|
|
PCONTEXT ContextRecord;
|
|
|
|
} EXCEPTION_POINTERS,*PEXCEPTION_POINTERS, *LPEXCEPTION_POINTERS;
|
2008-01-23 02:47:22 +00:00
|
|
|
|
|
|
|
#ifdef _M_PPC
|
|
|
|
#define LARGE_INTEGER_ORDER(x) x HighPart; DWORD LowPart;
|
|
|
|
#else
|
|
|
|
#define LARGE_INTEGER_ORDER(x) DWORD LowPart; x HighPart;
|
|
|
|
#endif
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef union _LARGE_INTEGER {
|
|
|
|
#if ! defined(NONAMELESSUNION) || defined(__cplusplus)
|
|
|
|
_ANONYMOUS_STRUCT struct {
|
2008-01-23 02:47:22 +00:00
|
|
|
LARGE_INTEGER_ORDER(LONG)
|
2005-05-08 17:44:37 +00:00
|
|
|
};
|
|
|
|
#endif /* NONAMELESSUNION */
|
|
|
|
struct {
|
2008-01-23 02:47:22 +00:00
|
|
|
LARGE_INTEGER_ORDER(LONG)
|
2005-05-08 17:44:37 +00:00
|
|
|
} u;
|
2006-01-14 22:25:20 +00:00
|
|
|
LONGLONG QuadPart;
|
|
|
|
} LARGE_INTEGER, *PLARGE_INTEGER;
|
|
|
|
typedef union _ULARGE_INTEGER {
|
2005-05-08 17:44:37 +00:00
|
|
|
#if ! defined(NONAMELESSUNION) || defined(__cplusplus)
|
|
|
|
_ANONYMOUS_STRUCT struct {
|
2008-01-23 02:47:22 +00:00
|
|
|
LARGE_INTEGER_ORDER(DWORD)
|
2005-05-08 17:44:37 +00:00
|
|
|
};
|
|
|
|
#endif /* NONAMELESSUNION */
|
2006-01-14 22:25:20 +00:00
|
|
|
struct {
|
2008-01-23 02:47:22 +00:00
|
|
|
LARGE_INTEGER_ORDER(DWORD)
|
2006-01-14 22:25:20 +00:00
|
|
|
} u;
|
2005-05-08 17:44:37 +00:00
|
|
|
ULONGLONG QuadPart;
|
|
|
|
} ULARGE_INTEGER, *PULARGE_INTEGER;
|
2005-06-21 23:42:58 +00:00
|
|
|
typedef struct _LUID {
|
2009-06-07 17:42:41 +00:00
|
|
|
LARGE_INTEGER_ORDER(LONG)
|
2005-06-21 23:42:58 +00:00
|
|
|
} LUID, *PLUID;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
|
|
|
#include <pshpack4.h>
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _LUID_AND_ATTRIBUTES {
|
2010-05-15 16:53:39 +00:00
|
|
|
LUID Luid;
|
|
|
|
DWORD Attributes;
|
2005-05-08 17:44:37 +00:00
|
|
|
} LUID_AND_ATTRIBUTES, *PLUID_AND_ATTRIBUTES;
|
|
|
|
typedef LUID_AND_ATTRIBUTES LUID_AND_ATTRIBUTES_ARRAY[ANYSIZE_ARRAY];
|
|
|
|
typedef LUID_AND_ATTRIBUTES_ARRAY *PLUID_AND_ATTRIBUTES_ARRAY;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
|
|
|
#include <poppack.h>
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _PRIVILEGE_SET {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD PrivilegeCount;
|
|
|
|
DWORD Control;
|
|
|
|
LUID_AND_ATTRIBUTES Privilege[ANYSIZE_ARRAY];
|
2005-05-08 17:44:37 +00:00
|
|
|
} PRIVILEGE_SET,*PPRIVILEGE_SET;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SECURITY_ATTRIBUTES {
|
|
|
|
DWORD nLength;
|
|
|
|
LPVOID lpSecurityDescriptor;
|
|
|
|
BOOL bInheritHandle;
|
|
|
|
} SECURITY_ATTRIBUTES,*PSECURITY_ATTRIBUTES,*LPSECURITY_ATTRIBUTES;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef enum _SECURITY_IMPERSONATION_LEVEL {
|
2010-05-15 16:53:39 +00:00
|
|
|
SecurityAnonymous,
|
|
|
|
SecurityIdentification,
|
|
|
|
SecurityImpersonation,
|
|
|
|
SecurityDelegation
|
2005-05-08 17:44:37 +00:00
|
|
|
} SECURITY_IMPERSONATION_LEVEL,*PSECURITY_IMPERSONATION_LEVEL;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef BOOLEAN SECURITY_CONTEXT_TRACKING_MODE,*PSECURITY_CONTEXT_TRACKING_MODE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SECURITY_QUALITY_OF_SERVICE {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD Length;
|
|
|
|
SECURITY_IMPERSONATION_LEVEL ImpersonationLevel;
|
|
|
|
SECURITY_CONTEXT_TRACKING_MODE ContextTrackingMode;
|
|
|
|
BOOLEAN EffectiveOnly;
|
2005-05-08 17:44:37 +00:00
|
|
|
} SECURITY_QUALITY_OF_SERVICE,*PSECURITY_QUALITY_OF_SERVICE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef PVOID PACCESS_TOKEN;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SE_IMPERSONATION_STATE {
|
2010-05-15 16:53:39 +00:00
|
|
|
PACCESS_TOKEN Token;
|
|
|
|
BOOLEAN CopyOnOpen;
|
|
|
|
BOOLEAN EffectiveOnly;
|
|
|
|
SECURITY_IMPERSONATION_LEVEL Level;
|
2005-05-08 17:44:37 +00:00
|
|
|
} SE_IMPERSONATION_STATE,*PSE_IMPERSONATION_STATE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SID_IDENTIFIER_AUTHORITY {
|
2010-05-15 16:53:39 +00:00
|
|
|
BYTE Value[6];
|
2005-05-08 17:44:37 +00:00
|
|
|
} SID_IDENTIFIER_AUTHORITY,*PSID_IDENTIFIER_AUTHORITY,*LPSID_IDENTIFIER_AUTHORITY;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef PVOID PSID;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SID {
|
2010-05-15 16:53:39 +00:00
|
|
|
BYTE Revision;
|
|
|
|
BYTE SubAuthorityCount;
|
|
|
|
SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
|
|
|
|
DWORD SubAuthority[ANYSIZE_ARRAY];
|
2005-05-08 17:44:37 +00:00
|
|
|
} SID, *PISID;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2006-08-06 12:03:31 +00:00
|
|
|
#define SECURITY_MIN_SID_SIZE (sizeof(SID))
|
|
|
|
#define SECURITY_MAX_SID_SIZE (FIELD_OFFSET(SID, SubAuthority) + SID_MAX_SUB_AUTHORITIES * sizeof(DWORD))
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SID_AND_ATTRIBUTES {
|
2010-05-15 16:53:39 +00:00
|
|
|
PSID Sid;
|
|
|
|
DWORD Attributes;
|
2005-05-08 17:44:37 +00:00
|
|
|
} SID_AND_ATTRIBUTES, *PSID_AND_ATTRIBUTES;
|
|
|
|
typedef SID_AND_ATTRIBUTES SID_AND_ATTRIBUTES_ARRAY[ANYSIZE_ARRAY];
|
|
|
|
typedef SID_AND_ATTRIBUTES_ARRAY *PSID_AND_ATTRIBUTES_ARRAY;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TOKEN_SOURCE {
|
2010-05-15 16:53:39 +00:00
|
|
|
CHAR SourceName[TOKEN_SOURCE_LENGTH];
|
|
|
|
LUID SourceIdentifier;
|
2005-05-08 17:44:37 +00:00
|
|
|
} TOKEN_SOURCE,*PTOKEN_SOURCE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TOKEN_CONTROL {
|
2010-05-15 16:53:39 +00:00
|
|
|
LUID TokenId;
|
|
|
|
LUID AuthenticationId;
|
|
|
|
LUID ModifiedId;
|
|
|
|
TOKEN_SOURCE TokenSource;
|
2005-05-08 17:44:37 +00:00
|
|
|
} TOKEN_CONTROL,*PTOKEN_CONTROL;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TOKEN_DEFAULT_DACL {
|
2010-05-15 16:53:39 +00:00
|
|
|
PACL DefaultDacl;
|
2005-05-08 17:44:37 +00:00
|
|
|
} TOKEN_DEFAULT_DACL,*PTOKEN_DEFAULT_DACL;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TOKEN_GROUPS {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD GroupCount;
|
|
|
|
SID_AND_ATTRIBUTES Groups[ANYSIZE_ARRAY];
|
2005-05-08 17:44:37 +00:00
|
|
|
} TOKEN_GROUPS,*PTOKEN_GROUPS,*LPTOKEN_GROUPS;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 18:02:41 +00:00
|
|
|
typedef struct _TOKEN_GROUPS_AND_PRIVILEGES {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD SidCount;
|
|
|
|
DWORD SidLength;
|
|
|
|
PSID_AND_ATTRIBUTES Sids;
|
|
|
|
DWORD RestrictedSidCount;
|
|
|
|
DWORD RestrictedSidLength;
|
|
|
|
PSID_AND_ATTRIBUTES RestrictedSids;
|
|
|
|
DWORD PrivilegeCount;
|
|
|
|
DWORD PrivilegeLength;
|
|
|
|
PLUID_AND_ATTRIBUTES Privileges;
|
|
|
|
LUID AuthenticationId;
|
2005-05-08 18:02:41 +00:00
|
|
|
} TOKEN_GROUPS_AND_PRIVILEGES, *PTOKEN_GROUPS_AND_PRIVILEGES;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 18:02:41 +00:00
|
|
|
typedef struct _TOKEN_ORIGIN {
|
2010-05-15 16:53:39 +00:00
|
|
|
LUID OriginatingLogonSession;
|
2005-05-08 18:02:41 +00:00
|
|
|
} TOKEN_ORIGIN, *PTOKEN_ORIGIN;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TOKEN_OWNER {
|
2010-05-15 16:53:39 +00:00
|
|
|
PSID Owner;
|
2005-05-08 17:44:37 +00:00
|
|
|
} TOKEN_OWNER,*PTOKEN_OWNER;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TOKEN_PRIMARY_GROUP {
|
2010-05-15 16:53:39 +00:00
|
|
|
PSID PrimaryGroup;
|
2005-05-08 17:44:37 +00:00
|
|
|
} TOKEN_PRIMARY_GROUP,*PTOKEN_PRIMARY_GROUP;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TOKEN_PRIVILEGES {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD PrivilegeCount;
|
|
|
|
LUID_AND_ATTRIBUTES Privileges[ANYSIZE_ARRAY];
|
2005-05-08 17:44:37 +00:00
|
|
|
} TOKEN_PRIVILEGES,*PTOKEN_PRIVILEGES,*LPTOKEN_PRIVILEGES;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef enum tagTOKEN_TYPE {
|
|
|
|
TokenPrimary = 1,
|
|
|
|
TokenImpersonation
|
|
|
|
} TOKEN_TYPE,*PTOKEN_TYPE;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2010-05-15 22:50:07 +00:00
|
|
|
#include <pshpack4.h>
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TOKEN_STATISTICS {
|
2010-05-15 16:53:39 +00:00
|
|
|
LUID TokenId;
|
|
|
|
LUID AuthenticationId;
|
|
|
|
LARGE_INTEGER ExpirationTime;
|
|
|
|
TOKEN_TYPE TokenType;
|
|
|
|
SECURITY_IMPERSONATION_LEVEL ImpersonationLevel;
|
|
|
|
DWORD DynamicCharged;
|
|
|
|
DWORD DynamicAvailable;
|
|
|
|
DWORD GroupCount;
|
|
|
|
DWORD PrivilegeCount;
|
|
|
|
LUID ModifiedId;
|
2005-05-08 17:44:37 +00:00
|
|
|
} TOKEN_STATISTICS, *PTOKEN_STATISTICS;
|
2010-05-15 22:50:07 +00:00
|
|
|
#include <poppack.h>
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TOKEN_USER {
|
2010-05-15 16:53:39 +00:00
|
|
|
SID_AND_ATTRIBUTES User;
|
2005-05-08 17:44:37 +00:00
|
|
|
} TOKEN_USER, *PTOKEN_USER;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef DWORD SECURITY_INFORMATION,*PSECURITY_INFORMATION;
|
|
|
|
typedef WORD SECURITY_DESCRIPTOR_CONTROL,*PSECURITY_DESCRIPTOR_CONTROL;
|
2007-06-12 15:23:28 +00:00
|
|
|
|
|
|
|
#ifndef _SECURITY_ATTRIBUTES_
|
|
|
|
#define _SECURITY_ATTRIBUTES_
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SECURITY_DESCRIPTOR {
|
2010-05-15 16:53:39 +00:00
|
|
|
BYTE Revision;
|
|
|
|
BYTE Sbz1;
|
|
|
|
SECURITY_DESCRIPTOR_CONTROL Control;
|
|
|
|
PSID Owner;
|
|
|
|
PSID Group;
|
|
|
|
PACL Sacl;
|
|
|
|
PACL Dacl;
|
2009-01-18 15:59:21 +00:00
|
|
|
} SECURITY_DESCRIPTOR, *PISECURITY_DESCRIPTOR;
|
|
|
|
typedef PVOID PSECURITY_DESCRIPTOR;
|
2007-06-12 15:23:28 +00:00
|
|
|
#endif
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 18:02:41 +00:00
|
|
|
typedef struct _SECURITY_DESCRIPTOR_RELATIVE {
|
2010-05-15 16:53:39 +00:00
|
|
|
BYTE Revision;
|
|
|
|
BYTE Sbz1;
|
|
|
|
SECURITY_DESCRIPTOR_CONTROL Control;
|
|
|
|
DWORD Owner;
|
|
|
|
DWORD Group;
|
|
|
|
DWORD Sacl;
|
|
|
|
DWORD Dacl;
|
2005-07-26 14:00:45 +00:00
|
|
|
} SECURITY_DESCRIPTOR_RELATIVE, *PISECURITY_DESCRIPTOR_RELATIVE;
|
2009-06-06 16:24:27 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef enum _TOKEN_INFORMATION_CLASS {
|
2009-06-06 16:24:27 +00:00
|
|
|
TokenUser = 1,
|
|
|
|
TokenGroups,
|
|
|
|
TokenPrivileges,
|
|
|
|
TokenOwner,
|
|
|
|
TokenPrimaryGroup,
|
|
|
|
TokenDefaultDacl,
|
|
|
|
TokenSource,
|
|
|
|
TokenType,
|
|
|
|
TokenImpersonationLevel,
|
|
|
|
TokenStatistics,
|
|
|
|
TokenRestrictedSids,
|
|
|
|
TokenSessionId,
|
|
|
|
TokenGroupsAndPrivileges,
|
|
|
|
TokenSessionReference,
|
|
|
|
TokenSandBoxInert,
|
|
|
|
TokenAuditPolicy,
|
|
|
|
TokenOrigin,
|
|
|
|
TokenElevationType,
|
|
|
|
TokenLinkedToken,
|
|
|
|
TokenElevation,
|
|
|
|
TokenHasRestrictions,
|
|
|
|
TokenAccessInformation,
|
|
|
|
TokenVirtualizationAllowed,
|
|
|
|
TokenVirtualizationEnabled,
|
|
|
|
TokenIntegrityLevel,
|
|
|
|
TokenUIAccess,
|
|
|
|
TokenMandatoryPolicy,
|
|
|
|
TokenLogonSid,
|
|
|
|
MaxTokenInfoClass
|
2005-05-08 17:44:37 +00:00
|
|
|
} TOKEN_INFORMATION_CLASS;
|
2009-06-06 16:24:27 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef enum _SID_NAME_USE {
|
2010-05-15 16:53:39 +00:00
|
|
|
SidTypeUser=1,
|
|
|
|
SidTypeGroup,
|
|
|
|
SidTypeDomain,
|
|
|
|
SidTypeAlias,
|
|
|
|
SidTypeWellKnownGroup,
|
|
|
|
SidTypeDeletedAccount,
|
|
|
|
SidTypeInvalid,
|
|
|
|
SidTypeUnknown,
|
|
|
|
SidTypeComputer,
|
|
|
|
SidTypeLabel
|
2005-05-08 17:44:37 +00:00
|
|
|
} SID_NAME_USE,*PSID_NAME_USE;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _QUOTA_LIMITS {
|
2010-05-15 16:53:39 +00:00
|
|
|
SIZE_T PagedPoolLimit;
|
|
|
|
SIZE_T NonPagedPoolLimit;
|
|
|
|
SIZE_T MinimumWorkingSetSize;
|
|
|
|
SIZE_T MaximumWorkingSetSize;
|
|
|
|
SIZE_T PagefileLimit;
|
|
|
|
LARGE_INTEGER TimeLimit;
|
2005-05-08 17:44:37 +00:00
|
|
|
} QUOTA_LIMITS,*PQUOTA_LIMITS;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IO_COUNTERS {
|
2010-05-16 12:23:45 +00:00
|
|
|
ULONGLONG ReadOperationCount;
|
|
|
|
ULONGLONG WriteOperationCount;
|
|
|
|
ULONGLONG OtherOperationCount;
|
|
|
|
ULONGLONG ReadTransferCount;
|
|
|
|
ULONGLONG WriteTransferCount;
|
|
|
|
ULONGLONG OtherTransferCount;
|
2005-05-08 17:44:37 +00:00
|
|
|
} IO_COUNTERS, *PIO_COUNTERS;
|
2010-05-16 12:23:45 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _FILE_NOTIFY_INFORMATION {
|
2010-05-16 12:23:45 +00:00
|
|
|
DWORD NextEntryOffset;
|
|
|
|
DWORD Action;
|
|
|
|
DWORD FileNameLength;
|
|
|
|
WCHAR FileName[1];
|
2005-05-08 17:44:37 +00:00
|
|
|
} FILE_NOTIFY_INFORMATION,*PFILE_NOTIFY_INFORMATION;
|
2010-05-16 12:23:45 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TAPE_ERASE {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Type;
|
|
|
|
BOOLEAN Immediate;
|
|
|
|
} TAPE_ERASE, *PTAPE_ERASE;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TAPE_GET_DRIVE_PARAMETERS {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
BOOLEAN ECC;
|
|
|
|
BOOLEAN Compression;
|
|
|
|
BOOLEAN DataPadding;
|
|
|
|
BOOLEAN ReportSetmarks;
|
|
|
|
DWORD DefaultBlockSize;
|
|
|
|
DWORD MaximumBlockSize;
|
|
|
|
DWORD MinimumBlockSize;
|
|
|
|
DWORD MaximumPartitionCount;
|
|
|
|
DWORD FeaturesLow;
|
|
|
|
DWORD FeaturesHigh;
|
|
|
|
DWORD EOTWarningZoneSize;
|
|
|
|
} TAPE_GET_DRIVE_PARAMETERS, *PTAPE_GET_DRIVE_PARAMETERS;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TAPE_GET_MEDIA_PARAMETERS {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
LARGE_INTEGER Capacity;
|
|
|
|
LARGE_INTEGER Remaining;
|
|
|
|
DWORD BlockSize;
|
|
|
|
DWORD PartitionCount;
|
|
|
|
BOOLEAN WriteProtected;
|
|
|
|
} TAPE_GET_MEDIA_PARAMETERS, *PTAPE_GET_MEDIA_PARAMETERS;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TAPE_GET_POSITION {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
ULONG Type;
|
|
|
|
ULONG Partition;
|
|
|
|
LARGE_INTEGER Offset;
|
|
|
|
} TAPE_GET_POSITION, *PTAPE_GET_POSITION;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TAPE_PREPARE {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Operation;
|
|
|
|
BOOLEAN Immediate;
|
|
|
|
} TAPE_PREPARE, *PTAPE_PREPARE;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TAPE_SET_DRIVE_PARAMETERS {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
BOOLEAN ECC;
|
|
|
|
BOOLEAN Compression;
|
|
|
|
BOOLEAN DataPadding;
|
|
|
|
BOOLEAN ReportSetmarks;
|
|
|
|
DWORD EOTWarningZoneSize;
|
|
|
|
} TAPE_SET_DRIVE_PARAMETERS, *PTAPE_SET_DRIVE_PARAMETERS;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TAPE_SET_MEDIA_PARAMETERS {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD BlockSize;
|
2005-05-08 17:44:37 +00:00
|
|
|
} TAPE_SET_MEDIA_PARAMETERS,*PTAPE_SET_MEDIA_PARAMETERS;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TAPE_SET_POSITION {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Method;
|
|
|
|
DWORD Partition;
|
|
|
|
LARGE_INTEGER Offset;
|
|
|
|
BOOLEAN Immediate;
|
|
|
|
} TAPE_SET_POSITION, *PTAPE_SET_POSITION;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TAPE_WRITE_MARKS {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Type;
|
|
|
|
DWORD Count;
|
|
|
|
BOOLEAN Immediate;
|
|
|
|
} TAPE_WRITE_MARKS, *PTAPE_WRITE_MARKS;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _TAPE_CREATE_PARTITION {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Method;
|
|
|
|
DWORD Count;
|
|
|
|
DWORD Size;
|
|
|
|
} TAPE_CREATE_PARTITION, *PTAPE_CREATE_PARTITION;
|
2010-05-16 12:23:45 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _MEMORY_BASIC_INFORMATION {
|
2010-05-16 12:23:45 +00:00
|
|
|
PVOID BaseAddress;
|
|
|
|
PVOID AllocationBase;
|
|
|
|
DWORD AllocationProtect;
|
|
|
|
SIZE_T RegionSize;
|
|
|
|
DWORD State;
|
|
|
|
DWORD Protect;
|
|
|
|
DWORD Type;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
} MEMORY_BASIC_INFORMATION, *PMEMORY_BASIC_INFORMATION;
|
2010-05-16 12:23:45 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _MESSAGE_RESOURCE_ENTRY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
WORD Length;
|
|
|
|
WORD Flags;
|
|
|
|
BYTE Text[1];
|
|
|
|
} MESSAGE_RESOURCE_ENTRY, *PMESSAGE_RESOURCE_ENTRY;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _MESSAGE_RESOURCE_BLOCK {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD LowId;
|
|
|
|
DWORD HighId;
|
|
|
|
DWORD OffsetToEntries;
|
|
|
|
} MESSAGE_RESOURCE_BLOCK, *PMESSAGE_RESOURCE_BLOCK;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _MESSAGE_RESOURCE_DATA {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD NumberOfBlocks;
|
|
|
|
MESSAGE_RESOURCE_BLOCK Blocks[1];
|
2005-05-08 17:44:37 +00:00
|
|
|
} MESSAGE_RESOURCE_DATA,*PMESSAGE_RESOURCE_DATA;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _LIST_ENTRY {
|
2010-05-15 16:53:39 +00:00
|
|
|
struct _LIST_ENTRY *Flink;
|
|
|
|
struct _LIST_ENTRY *Blink;
|
2010-05-09 22:53:41 +00:00
|
|
|
} LIST_ENTRY, *PLIST_ENTRY, *RESTRICTED_POINTER PRLIST_ENTRY;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2009-12-16 23:39:20 +00:00
|
|
|
typedef struct _LIST_ENTRY32 {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD Flink;
|
|
|
|
DWORD Blink;
|
2009-12-16 23:39:20 +00:00
|
|
|
} LIST_ENTRY32,*PLIST_ENTRY32;
|
2010-05-15 16:53:39 +00:00
|
|
|
|
2009-12-16 23:39:20 +00:00
|
|
|
typedef struct _LIST_ENTRY64 {
|
2010-05-15 16:53:39 +00:00
|
|
|
ULONGLONG Flink;
|
|
|
|
ULONGLONG Blink;
|
2009-12-16 23:39:20 +00:00
|
|
|
} LIST_ENTRY64,*PLIST_ENTRY64;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _SINGLE_LIST_ENTRY {
|
2010-05-15 16:53:39 +00:00
|
|
|
struct _SINGLE_LIST_ENTRY *Next;
|
2005-05-08 17:44:37 +00:00
|
|
|
} SINGLE_LIST_ENTRY,*PSINGLE_LIST_ENTRY;
|
|
|
|
|
2009-10-17 19:16:01 +00:00
|
|
|
//
|
|
|
|
// Slist Header
|
|
|
|
//
|
2005-05-08 17:44:37 +00:00
|
|
|
#ifndef _SLIST_HEADER_
|
|
|
|
#define _SLIST_HEADER_
|
2009-10-17 19:16:01 +00:00
|
|
|
|
|
|
|
#if defined(_WIN64)
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
Merge from amd64 branch:
40122 mmsystem.h: 64bit build fixes. (Samuel Serapión)
40123 mmsystem.h: Even more 64bit fixes. (Samuel Serapión)
40155 mmddk.h/mmsystem.h: Fix ACMDRVSTREAMINSTANCE, ACMDRVSTREAMHEADER, PORTALLOC, WAVEOPENDESC, MIDIOPENDESC, MIXEROPENDESC structures. Fix ACMFILTERENUMCBA/W, ACMFILTERTAGENUMCBA/W, ACMFORMATENUMCA/W, ACMFORMATTAGENUMCBA/W callbacks. Fix acmDriverEnum, acmFilterEnumA/W, acmFormatEnumA/W, acmFormatTagEnumA/W, acmStreamOpen, CloseDriver, OpenDriver, SendDriverMessage, mmTaskSignal, mmGetCurrentTask (Samuel Serapión)
40995 sqltypes.h: 64bit fixes for sqltype.h, also resort and cleanup (Timo Kreuzer)
40996 msacm.h: Fix tag of ACMFILTERCHOOSEA (Timo Kreuzer)
41029 sql.h: Fix SQLFetchScroll prototype. (Timo Kreuzer)
41045 commdlg.h: fix and update definition of OPENFILENAMEAW (Timo Kreuzer)
41449 basetsd.h: Disable wine hack for amd64 (Timo Kreuzer)
43506 wincrypt.h: Fix definition of CryptReleaseContext (Timo Kreuzer)
43840 wingdi.h: Fix LOGBRUSH definition. (Samuel Serapión)
43907 commctrl.h: Fix bad cast. (Timo Kreuzer)
44039 mmddk.h: Fix mmTaskCreate and mciGetDriverData prototypes per MSDN (Timo Kreuzer)
44040 windef.h/winsock.h/winsock2.h: Fix 32bit build. (Samuel Serapión)
44044 ws2spi.h: Fix ws2_32 64bit build (Samuel Serapión)
44294 winnt.h: Fix SLIST_ENTRY for WIN64 (Timo Kreuzer)
44338 winnt.h: fix build. (Samuel Serapión)
44460 winuser.h: Define PHDEVNOTIFY, PDLGITEMTEMPLATEA/W, LPDLGITEMTEMPLATEA/W, PPAINTSTRUCT, PMENUITEMTEMPLATE, PUSEROBJECTFLAGS, PMINIMIZEDMETRICS, PNONCLIENTMETRICSA/W, LPMOUSEINPUT, LPKEYBDINPUT, LPHARDWAREINPUT. Add HARDWAREHOOKSTRUCT structure. (Samuel Serapión)
svn path=/trunk/; revision=44614
2009-12-15 23:23:01 +00:00
|
|
|
typedef struct DECLSPEC_ALIGN(16) _SLIST_ENTRY {
|
2010-06-12 15:09:34 +00:00
|
|
|
struct _SLIST_ENTRY *Next;
|
|
|
|
} SLIST_ENTRY, *PSLIST_ENTRY;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
|
|
|
typedef struct _SLIST_ENTRY32 {
|
|
|
|
DWORD Next;
|
|
|
|
} SLIST_ENTRY32, *PSLIST_ENTRY32;
|
|
|
|
|
2009-10-17 19:16:01 +00:00
|
|
|
typedef union DECLSPEC_ALIGN(16) _SLIST_HEADER {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
_ANONYMOUS_STRUCT struct {
|
|
|
|
ULONGLONG Alignment;
|
|
|
|
ULONGLONG Region;
|
|
|
|
} DUMMYSTRUCTNAME;
|
|
|
|
struct {
|
|
|
|
ULONGLONG Depth:16;
|
|
|
|
ULONGLONG Sequence:9;
|
|
|
|
ULONGLONG NextEntry:39;
|
|
|
|
ULONGLONG HeaderType:1;
|
|
|
|
ULONGLONG Init:1;
|
|
|
|
ULONGLONG Reserved:59;
|
|
|
|
ULONGLONG Region:3;
|
|
|
|
} Header8;
|
|
|
|
struct {
|
|
|
|
ULONGLONG Depth:16;
|
|
|
|
ULONGLONG Sequence:48;
|
|
|
|
ULONGLONG HeaderType:1;
|
|
|
|
ULONGLONG Init:1;
|
|
|
|
ULONGLONG Reserved:2;
|
|
|
|
ULONGLONG NextEntry:60;
|
|
|
|
} Header16;
|
|
|
|
struct {
|
|
|
|
ULONGLONG Depth:16;
|
|
|
|
ULONGLONG Sequence:48;
|
|
|
|
ULONGLONG HeaderType:1;
|
|
|
|
ULONGLONG Reserved:3;
|
|
|
|
ULONGLONG NextEntry:60;
|
|
|
|
} HeaderX64;
|
2009-10-17 19:16:01 +00:00
|
|
|
} SLIST_HEADER, *PSLIST_HEADER;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
|
|
|
typedef union _SLIST_HEADER32{
|
|
|
|
ULONGLONG Alignment;
|
|
|
|
_ANONYMOUS_STRUCT struct {
|
|
|
|
SLIST_ENTRY32 Next;
|
|
|
|
WORD Depth;
|
|
|
|
WORD Sequence;
|
|
|
|
} DUMMYSTRUCTNAME;
|
|
|
|
} SLIST_HEADER32, *PSLIST_HEADER32;
|
|
|
|
|
2009-10-17 19:16:01 +00:00
|
|
|
#else
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
Merge from amd64 branch:
40122 mmsystem.h: 64bit build fixes. (Samuel Serapión)
40123 mmsystem.h: Even more 64bit fixes. (Samuel Serapión)
40155 mmddk.h/mmsystem.h: Fix ACMDRVSTREAMINSTANCE, ACMDRVSTREAMHEADER, PORTALLOC, WAVEOPENDESC, MIDIOPENDESC, MIXEROPENDESC structures. Fix ACMFILTERENUMCBA/W, ACMFILTERTAGENUMCBA/W, ACMFORMATENUMCA/W, ACMFORMATTAGENUMCBA/W callbacks. Fix acmDriverEnum, acmFilterEnumA/W, acmFormatEnumA/W, acmFormatTagEnumA/W, acmStreamOpen, CloseDriver, OpenDriver, SendDriverMessage, mmTaskSignal, mmGetCurrentTask (Samuel Serapión)
40995 sqltypes.h: 64bit fixes for sqltype.h, also resort and cleanup (Timo Kreuzer)
40996 msacm.h: Fix tag of ACMFILTERCHOOSEA (Timo Kreuzer)
41029 sql.h: Fix SQLFetchScroll prototype. (Timo Kreuzer)
41045 commdlg.h: fix and update definition of OPENFILENAMEAW (Timo Kreuzer)
41449 basetsd.h: Disable wine hack for amd64 (Timo Kreuzer)
43506 wincrypt.h: Fix definition of CryptReleaseContext (Timo Kreuzer)
43840 wingdi.h: Fix LOGBRUSH definition. (Samuel Serapión)
43907 commctrl.h: Fix bad cast. (Timo Kreuzer)
44039 mmddk.h: Fix mmTaskCreate and mciGetDriverData prototypes per MSDN (Timo Kreuzer)
44040 windef.h/winsock.h/winsock2.h: Fix 32bit build. (Samuel Serapión)
44044 ws2spi.h: Fix ws2_32 64bit build (Samuel Serapión)
44294 winnt.h: Fix SLIST_ENTRY for WIN64 (Timo Kreuzer)
44338 winnt.h: fix build. (Samuel Serapión)
44460 winuser.h: Define PHDEVNOTIFY, PDLGITEMTEMPLATEA/W, LPDLGITEMTEMPLATEA/W, PPAINTSTRUCT, PMENUITEMTEMPLATE, PUSEROBJECTFLAGS, PMINIMIZEDMETRICS, PNONCLIENTMETRICSA/W, LPMOUSEINPUT, LPKEYBDINPUT, LPHARDWAREINPUT. Add HARDWAREHOOKSTRUCT structure. (Samuel Serapión)
svn path=/trunk/; revision=44614
2009-12-15 23:23:01 +00:00
|
|
|
#define SLIST_ENTRY SINGLE_LIST_ENTRY
|
|
|
|
#define _SLIST_ENTRY _SINGLE_LIST_ENTRY
|
|
|
|
#define PSLIST_ENTRY PSINGLE_LIST_ENTRY
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
|
|
|
typedef SLIST_ENTRY SLIST_ENTRY32, *PSLIST_ENTRY32;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef union _SLIST_HEADER {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
ULONGLONG Alignment;
|
|
|
|
_ANONYMOUS_STRUCT struct {
|
|
|
|
SLIST_ENTRY Next;
|
|
|
|
WORD Depth;
|
|
|
|
WORD Sequence;
|
|
|
|
} DUMMYSTRUCTNAME;
|
2009-10-17 19:16:01 +00:00
|
|
|
} SLIST_HEADER, *PSLIST_HEADER;
|
|
|
|
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
typedef SLIST_HEADER SLIST_HEADER32, *PSLIST_HEADER32;
|
2009-10-17 19:16:01 +00:00
|
|
|
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
#endif /* defined(_WIN64) */
|
|
|
|
|
|
|
|
#endif /* _SLIST_HEADER_ */
|
2005-05-08 17:44:37 +00:00
|
|
|
|
2008-09-10 15:30:27 +00:00
|
|
|
NTSYSAPI
|
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
RtlInitializeSListHead (
|
|
|
|
IN PSLIST_HEADER ListHead
|
|
|
|
);
|
|
|
|
|
|
|
|
NTSYSAPI
|
|
|
|
PSLIST_ENTRY
|
|
|
|
NTAPI
|
|
|
|
RtlFirstEntrySList (
|
|
|
|
IN const SLIST_HEADER *ListHead
|
|
|
|
);
|
|
|
|
|
|
|
|
NTSYSAPI
|
|
|
|
PSLIST_ENTRY
|
|
|
|
NTAPI
|
|
|
|
RtlInterlockedPopEntrySList (
|
|
|
|
IN PSLIST_HEADER ListHead
|
|
|
|
);
|
|
|
|
|
|
|
|
NTSYSAPI
|
|
|
|
PSLIST_ENTRY
|
|
|
|
NTAPI
|
|
|
|
RtlInterlockedPushEntrySList (
|
|
|
|
IN PSLIST_HEADER ListHead,
|
|
|
|
IN PSLIST_ENTRY ListEntry
|
|
|
|
);
|
|
|
|
|
|
|
|
NTSYSAPI
|
|
|
|
PSLIST_ENTRY
|
|
|
|
NTAPI
|
|
|
|
RtlInterlockedFlushSList (
|
|
|
|
IN PSLIST_HEADER ListHead
|
|
|
|
);
|
|
|
|
|
|
|
|
NTSYSAPI
|
2009-01-18 06:25:43 +00:00
|
|
|
WORD
|
2008-09-10 15:30:27 +00:00
|
|
|
NTAPI
|
|
|
|
RtlQueryDepthSList (
|
|
|
|
IN PSLIST_HEADER ListHead
|
|
|
|
);
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _RTL_CRITICAL_SECTION_DEBUG {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
WORD Type;
|
|
|
|
WORD CreatorBackTraceIndex;
|
|
|
|
struct _RTL_CRITICAL_SECTION *CriticalSection;
|
|
|
|
LIST_ENTRY ProcessLocksList;
|
|
|
|
DWORD EntryCount;
|
|
|
|
DWORD ContentionCount;
|
|
|
|
DWORD Flags;
|
|
|
|
WORD CreatorBackTraceIndexHigh;
|
|
|
|
WORD SpareWORD;
|
2010-05-09 22:53:41 +00:00
|
|
|
} RTL_CRITICAL_SECTION_DEBUG, *PRTL_CRITICAL_SECTION_DEBUG, RTL_RESOURCE_DEBUG, *PRTL_RESOURCE_DEBUG;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
|
|
|
#include "pshpack8.h"
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _RTL_CRITICAL_SECTION {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
PRTL_CRITICAL_SECTION_DEBUG DebugInfo;
|
|
|
|
LONG LockCount;
|
|
|
|
LONG RecursionCount;
|
|
|
|
HANDLE OwningThread;
|
|
|
|
HANDLE LockSemaphore;
|
|
|
|
ULONG_PTR SpinCount;
|
|
|
|
} RTL_CRITICAL_SECTION, *PRTL_CRITICAL_SECTION;
|
|
|
|
#include "poppack.h"
|
2005-09-05 07:51:15 +00:00
|
|
|
|
2008-03-15 09:29:54 +00:00
|
|
|
NTSYSAPI
|
Merge 34703, 34704, 34705, 34706, 34707, 34708, 34709 and 34710 from ros-amd64-bringup branch:
- Fix inline versions of integer <-> pointer conversion functions.
- Implement _InterlockedAnd64, _InterlockedOr64, _interlockedbittestandreset64, _interlockedbittestandset64 and gs-segment-adressing functions
- As amd64 shares most of the intrinsics of x86, implement them in intrin_x86.h
- Fix IMAGE_FIRST_SECTION macro
- Implement GetCurrentFiber(), NtCurrentTeb() and YieldProcessor()
- Fix ENUMRESLANGPROC, ENUMRESNAMEPROC and ENUMRESTYPEPROC
- Add Interlocked functions for pointers
- Add InterlockedCompareExchangePointer and InterlockedExchangePointer
- Add intrinsic port and register access functions
fix LIST_ENTRY() macro for 64 bits
add size_t definition to _mingw.h (ported from mingw)
- Update some loader structs ULONG -> ULONG_PTR / SIZE_T
svn path=/trunk/; revision=35636
2008-08-25 18:47:44 +00:00
|
|
|
WORD
|
2008-03-15 09:29:54 +00:00
|
|
|
NTAPI
|
|
|
|
RtlCaptureStackBackTrace(
|
|
|
|
IN DWORD FramesToSkip,
|
|
|
|
IN DWORD FramesToCapture,
|
|
|
|
OUT PVOID *BackTrace,
|
|
|
|
OUT PDWORD BackTraceHash OPTIONAL
|
|
|
|
);
|
|
|
|
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
NTSYSAPI
|
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
RtlCaptureContext(
|
|
|
|
PCONTEXT ContextRecord
|
|
|
|
);
|
2008-03-15 09:29:54 +00:00
|
|
|
|
2008-01-16 23:19:01 +00:00
|
|
|
NTSYSAPI
|
|
|
|
PVOID
|
|
|
|
NTAPI
|
|
|
|
RtlPcToFileHeader(
|
|
|
|
IN PVOID PcValue,
|
|
|
|
PVOID* BaseOfImage
|
|
|
|
);
|
|
|
|
|
2007-08-07 20:11:21 +00:00
|
|
|
NTSYSAPI
|
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
RtlUnwind (
|
|
|
|
IN PVOID TargetFrame OPTIONAL,
|
|
|
|
IN PVOID TargetIp OPTIONAL,
|
|
|
|
IN PEXCEPTION_RECORD ExceptionRecord OPTIONAL,
|
|
|
|
IN PVOID ReturnValue
|
|
|
|
);
|
|
|
|
|
2006-08-30 19:02:42 +00:00
|
|
|
#define RTL_SRWLOCK_INIT {0}
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
|
|
|
typedef struct _RTL_SRWLOCK {
|
|
|
|
PVOID Ptr;
|
2006-08-30 19:02:42 +00:00
|
|
|
} RTL_SRWLOCK, *PRTL_SRWLOCK;
|
|
|
|
|
|
|
|
#define RTL_CONDITION_VARIABLE_INIT {0}
|
|
|
|
#define RTL_CONDITION_VARIABLE_LOCKMODE_SHARED 0x1
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
|
|
|
typedef struct _RTL_CONDITION_VARIABLE {
|
|
|
|
PVOID Ptr;
|
2006-08-30 19:02:42 +00:00
|
|
|
} RTL_CONDITION_VARIABLE, *PRTL_CONDITION_VARIABLE;
|
|
|
|
|
2005-11-22 04:57:45 +00:00
|
|
|
typedef LONG
|
|
|
|
(NTAPI *PVECTORED_EXCEPTION_HANDLER)(
|
|
|
|
struct _EXCEPTION_POINTERS *ExceptionInfo
|
|
|
|
);
|
|
|
|
|
2010-05-15 16:53:39 +00:00
|
|
|
typedef struct _PROCESSOR_NUMBER {
|
|
|
|
WORD Group;
|
|
|
|
BYTE Number;
|
|
|
|
BYTE Reserved;
|
|
|
|
} PROCESSOR_NUMBER, *PPROCESSOR_NUMBER;
|
|
|
|
|
2010-03-29 11:23:09 +00:00
|
|
|
typedef struct _GROUP_AFFINITY {
|
|
|
|
KAFFINITY Mask;
|
|
|
|
WORD Group;
|
|
|
|
WORD Reserved[3];
|
|
|
|
} GROUP_AFFINITY, *PGROUP_AFFINITY;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _EVENTLOGRECORD {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Length;
|
|
|
|
DWORD Reserved;
|
|
|
|
DWORD RecordNumber;
|
|
|
|
DWORD TimeGenerated;
|
|
|
|
DWORD TimeWritten;
|
|
|
|
DWORD EventID;
|
|
|
|
WORD EventType;
|
|
|
|
WORD NumStrings;
|
|
|
|
WORD EventCategory;
|
|
|
|
WORD ReservedFlags;
|
|
|
|
DWORD ClosingRecordNumber;
|
|
|
|
DWORD StringOffset;
|
|
|
|
DWORD UserSidLength;
|
|
|
|
DWORD UserSidOffset;
|
|
|
|
DWORD DataLength;
|
|
|
|
DWORD DataOffset;
|
|
|
|
} EVENTLOGRECORD, *PEVENTLOGRECORD;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _OSVERSIONINFOA {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD dwOSVersionInfoSize;
|
|
|
|
DWORD dwMajorVersion;
|
|
|
|
DWORD dwMinorVersion;
|
|
|
|
DWORD dwBuildNumber;
|
|
|
|
DWORD dwPlatformId;
|
|
|
|
CHAR szCSDVersion[128];
|
|
|
|
} OSVERSIONINFOA, *POSVERSIONINFOA, *LPOSVERSIONINFOA;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _OSVERSIONINFOW {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD dwOSVersionInfoSize;
|
|
|
|
DWORD dwMajorVersion;
|
|
|
|
DWORD dwMinorVersion;
|
|
|
|
DWORD dwBuildNumber;
|
|
|
|
DWORD dwPlatformId;
|
|
|
|
WCHAR szCSDVersion[128];
|
2010-05-09 22:53:41 +00:00
|
|
|
} OSVERSIONINFOW, *POSVERSIONINFOW, *LPOSVERSIONINFOW, RTL_OSVERSIONINFOW, *PRTL_OSVERSIONINFOW;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _OSVERSIONINFOEXA {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD dwOSVersionInfoSize;
|
|
|
|
DWORD dwMajorVersion;
|
|
|
|
DWORD dwMinorVersion;
|
|
|
|
DWORD dwBuildNumber;
|
|
|
|
DWORD dwPlatformId;
|
|
|
|
CHAR szCSDVersion[128];
|
|
|
|
WORD wServicePackMajor;
|
|
|
|
WORD wServicePackMinor;
|
|
|
|
WORD wSuiteMask;
|
|
|
|
BYTE wProductType;
|
|
|
|
BYTE wReserved;
|
2005-05-08 17:44:37 +00:00
|
|
|
} OSVERSIONINFOEXA, *POSVERSIONINFOEXA, *LPOSVERSIONINFOEXA;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _OSVERSIONINFOEXW {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD dwOSVersionInfoSize;
|
|
|
|
DWORD dwMajorVersion;
|
|
|
|
DWORD dwMinorVersion;
|
|
|
|
DWORD dwBuildNumber;
|
|
|
|
DWORD dwPlatformId;
|
|
|
|
WCHAR szCSDVersion[128];
|
|
|
|
WORD wServicePackMajor;
|
|
|
|
WORD wServicePackMinor;
|
|
|
|
WORD wSuiteMask;
|
|
|
|
BYTE wProductType;
|
|
|
|
BYTE wReserved;
|
2010-05-09 22:53:41 +00:00
|
|
|
} OSVERSIONINFOEXW, *POSVERSIONINFOEXW, *LPOSVERSIONINFOEXW, RTL_OSVERSIONINFOEXW, *PRTL_OSVERSIONINFOEXW;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
|
|
|
#include <pshpack2.h>
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_VXD_HEADER {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
WORD e32_magic;
|
|
|
|
BYTE e32_border;
|
|
|
|
BYTE e32_worder;
|
|
|
|
DWORD e32_level;
|
|
|
|
WORD e32_cpu;
|
|
|
|
WORD e32_os;
|
|
|
|
DWORD e32_ver;
|
|
|
|
DWORD e32_mflags;
|
|
|
|
DWORD e32_mpages;
|
|
|
|
DWORD e32_startobj;
|
|
|
|
DWORD e32_eip;
|
|
|
|
DWORD e32_stackobj;
|
|
|
|
DWORD e32_esp;
|
|
|
|
DWORD e32_pagesize;
|
|
|
|
DWORD e32_lastpagesize;
|
|
|
|
DWORD e32_fixupsize;
|
|
|
|
DWORD e32_fixupsum;
|
|
|
|
DWORD e32_ldrsize;
|
|
|
|
DWORD e32_ldrsum;
|
|
|
|
DWORD e32_objtab;
|
|
|
|
DWORD e32_objcnt;
|
|
|
|
DWORD e32_objmap;
|
|
|
|
DWORD e32_itermap;
|
|
|
|
DWORD e32_rsrctab;
|
|
|
|
DWORD e32_rsrccnt;
|
|
|
|
DWORD e32_restab;
|
|
|
|
DWORD e32_enttab;
|
|
|
|
DWORD e32_dirtab;
|
|
|
|
DWORD e32_dircnt;
|
|
|
|
DWORD e32_fpagetab;
|
|
|
|
DWORD e32_frectab;
|
|
|
|
DWORD e32_impmod;
|
|
|
|
DWORD e32_impmodcnt;
|
|
|
|
DWORD e32_impproc;
|
|
|
|
DWORD e32_pagesum;
|
|
|
|
DWORD e32_datapage;
|
|
|
|
DWORD e32_preload;
|
|
|
|
DWORD e32_nrestab;
|
|
|
|
DWORD e32_cbnrestab;
|
|
|
|
DWORD e32_nressum;
|
|
|
|
DWORD e32_autodata;
|
|
|
|
DWORD e32_debuginfo;
|
|
|
|
DWORD e32_debuglen;
|
|
|
|
DWORD e32_instpreload;
|
|
|
|
DWORD e32_instdemand;
|
|
|
|
DWORD e32_heapsize;
|
|
|
|
BYTE e32_res3[12];
|
|
|
|
DWORD e32_winresoff;
|
|
|
|
DWORD e32_winreslen;
|
|
|
|
WORD e32_devid;
|
|
|
|
WORD e32_ddkver;
|
|
|
|
} IMAGE_VXD_HEADER, *PIMAGE_VXD_HEADER;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_DOS_HEADER {
|
|
|
|
WORD e_magic;
|
|
|
|
WORD e_cblp;
|
|
|
|
WORD e_cp;
|
|
|
|
WORD e_crlc;
|
|
|
|
WORD e_cparhdr;
|
|
|
|
WORD e_minalloc;
|
|
|
|
WORD e_maxalloc;
|
|
|
|
WORD e_ss;
|
|
|
|
WORD e_sp;
|
|
|
|
WORD e_csum;
|
|
|
|
WORD e_ip;
|
|
|
|
WORD e_cs;
|
|
|
|
WORD e_lfarlc;
|
|
|
|
WORD e_ovno;
|
|
|
|
WORD e_res[4];
|
|
|
|
WORD e_oemid;
|
|
|
|
WORD e_oeminfo;
|
|
|
|
WORD e_res2[10];
|
|
|
|
LONG e_lfanew;
|
|
|
|
} IMAGE_DOS_HEADER, *PIMAGE_DOS_HEADER;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_OS2_HEADER {
|
|
|
|
WORD ne_magic;
|
|
|
|
CHAR ne_ver;
|
|
|
|
CHAR ne_rev;
|
|
|
|
WORD ne_enttab;
|
|
|
|
WORD ne_cbenttab;
|
|
|
|
LONG ne_crc;
|
|
|
|
WORD ne_flags;
|
|
|
|
WORD ne_autodata;
|
|
|
|
WORD ne_heap;
|
|
|
|
WORD ne_stack;
|
|
|
|
LONG ne_csip;
|
|
|
|
LONG ne_sssp;
|
|
|
|
WORD ne_cseg;
|
|
|
|
WORD ne_cmod;
|
|
|
|
WORD ne_cbnrestab;
|
|
|
|
WORD ne_segtab;
|
|
|
|
WORD ne_rsrctab;
|
|
|
|
WORD ne_restab;
|
|
|
|
WORD ne_modtab;
|
|
|
|
WORD ne_imptab;
|
|
|
|
LONG ne_nrestab;
|
|
|
|
WORD ne_cmovent;
|
|
|
|
WORD ne_align;
|
|
|
|
WORD ne_cres;
|
|
|
|
BYTE ne_exetyp;
|
|
|
|
BYTE ne_flagsothers;
|
|
|
|
WORD ne_pretthunks;
|
|
|
|
WORD ne_psegrefbytes;
|
|
|
|
WORD ne_swaparea;
|
|
|
|
WORD ne_expver;
|
|
|
|
} IMAGE_OS2_HEADER, *PIMAGE_OS2_HEADER;
|
|
|
|
|
2009-06-29 17:38:57 +00:00
|
|
|
#include <poppack.h>
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_FILE_HEADER {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
WORD Machine;
|
|
|
|
WORD NumberOfSections;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
DWORD PointerToSymbolTable;
|
|
|
|
DWORD NumberOfSymbols;
|
|
|
|
WORD SizeOfOptionalHeader;
|
|
|
|
WORD Characteristics;
|
2005-05-08 17:44:37 +00:00
|
|
|
} IMAGE_FILE_HEADER, *PIMAGE_FILE_HEADER;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_DATA_DIRECTORY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD VirtualAddress;
|
|
|
|
DWORD Size;
|
|
|
|
} IMAGE_DATA_DIRECTORY, *PIMAGE_DATA_DIRECTORY;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-06-18 12:12:41 +00:00
|
|
|
typedef struct _IMAGE_OPTIONAL_HEADER32 {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
WORD Magic;
|
|
|
|
BYTE MajorLinkerVersion;
|
|
|
|
BYTE MinorLinkerVersion;
|
|
|
|
DWORD SizeOfCode;
|
|
|
|
DWORD SizeOfInitializedData;
|
|
|
|
DWORD SizeOfUninitializedData;
|
|
|
|
DWORD AddressOfEntryPoint;
|
|
|
|
DWORD BaseOfCode;
|
|
|
|
DWORD BaseOfData;
|
|
|
|
DWORD ImageBase;
|
|
|
|
DWORD SectionAlignment;
|
|
|
|
DWORD FileAlignment;
|
|
|
|
WORD MajorOperatingSystemVersion;
|
|
|
|
WORD MinorOperatingSystemVersion;
|
|
|
|
WORD MajorImageVersion;
|
|
|
|
WORD MinorImageVersion;
|
|
|
|
WORD MajorSubsystemVersion;
|
|
|
|
WORD MinorSubsystemVersion;
|
|
|
|
DWORD Win32VersionValue;
|
|
|
|
DWORD SizeOfImage;
|
|
|
|
DWORD SizeOfHeaders;
|
|
|
|
DWORD CheckSum;
|
|
|
|
WORD Subsystem;
|
|
|
|
WORD DllCharacteristics;
|
|
|
|
DWORD SizeOfStackReserve;
|
|
|
|
DWORD SizeOfStackCommit;
|
|
|
|
DWORD SizeOfHeapReserve;
|
|
|
|
DWORD SizeOfHeapCommit;
|
|
|
|
DWORD LoaderFlags;
|
|
|
|
DWORD NumberOfRvaAndSizes;
|
|
|
|
IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES];
|
|
|
|
} IMAGE_OPTIONAL_HEADER32, *PIMAGE_OPTIONAL_HEADER32;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-06-18 12:12:41 +00:00
|
|
|
typedef struct _IMAGE_OPTIONAL_HEADER64 {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
WORD Magic;
|
|
|
|
BYTE MajorLinkerVersion;
|
|
|
|
BYTE MinorLinkerVersion;
|
|
|
|
DWORD SizeOfCode;
|
|
|
|
DWORD SizeOfInitializedData;
|
|
|
|
DWORD SizeOfUninitializedData;
|
|
|
|
DWORD AddressOfEntryPoint;
|
|
|
|
DWORD BaseOfCode;
|
|
|
|
ULONGLONG ImageBase;
|
|
|
|
DWORD SectionAlignment;
|
|
|
|
DWORD FileAlignment;
|
|
|
|
WORD MajorOperatingSystemVersion;
|
|
|
|
WORD MinorOperatingSystemVersion;
|
|
|
|
WORD MajorImageVersion;
|
|
|
|
WORD MinorImageVersion;
|
|
|
|
WORD MajorSubsystemVersion;
|
|
|
|
WORD MinorSubsystemVersion;
|
|
|
|
DWORD Win32VersionValue;
|
|
|
|
DWORD SizeOfImage;
|
|
|
|
DWORD SizeOfHeaders;
|
|
|
|
DWORD CheckSum;
|
|
|
|
WORD Subsystem;
|
|
|
|
WORD DllCharacteristics;
|
|
|
|
ULONGLONG SizeOfStackReserve;
|
|
|
|
ULONGLONG SizeOfStackCommit;
|
|
|
|
ULONGLONG SizeOfHeapReserve;
|
|
|
|
ULONGLONG SizeOfHeapCommit;
|
|
|
|
DWORD LoaderFlags;
|
|
|
|
DWORD NumberOfRvaAndSizes;
|
|
|
|
IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES];
|
|
|
|
} IMAGE_OPTIONAL_HEADER64, *PIMAGE_OPTIONAL_HEADER64;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_ROM_OPTIONAL_HEADER {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
WORD Magic;
|
|
|
|
BYTE MajorLinkerVersion;
|
|
|
|
BYTE MinorLinkerVersion;
|
|
|
|
DWORD SizeOfCode;
|
|
|
|
DWORD SizeOfInitializedData;
|
|
|
|
DWORD SizeOfUninitializedData;
|
|
|
|
DWORD AddressOfEntryPoint;
|
|
|
|
DWORD BaseOfCode;
|
|
|
|
DWORD BaseOfData;
|
|
|
|
DWORD BaseOfBss;
|
|
|
|
DWORD GprMask;
|
|
|
|
DWORD CprMask[4];
|
|
|
|
DWORD GpValue;
|
|
|
|
} IMAGE_ROM_OPTIONAL_HEADER, *PIMAGE_ROM_OPTIONAL_HEADER;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-06-18 12:12:41 +00:00
|
|
|
typedef struct _IMAGE_NT_HEADERS32 {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Signature;
|
|
|
|
IMAGE_FILE_HEADER FileHeader;
|
|
|
|
IMAGE_OPTIONAL_HEADER32 OptionalHeader;
|
|
|
|
} IMAGE_NT_HEADERS32, *PIMAGE_NT_HEADERS32;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-06-18 12:12:41 +00:00
|
|
|
typedef struct _IMAGE_NT_HEADERS64 {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Signature;
|
|
|
|
IMAGE_FILE_HEADER FileHeader;
|
|
|
|
IMAGE_OPTIONAL_HEADER64 OptionalHeader;
|
|
|
|
} IMAGE_NT_HEADERS64, *PIMAGE_NT_HEADERS64;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-06-18 12:12:41 +00:00
|
|
|
#ifdef _WIN64
|
|
|
|
typedef IMAGE_OPTIONAL_HEADER64 IMAGE_OPTIONAL_HEADER;
|
|
|
|
typedef PIMAGE_OPTIONAL_HEADER64 PIMAGE_OPTIONAL_HEADER;
|
|
|
|
typedef IMAGE_NT_HEADERS64 IMAGE_NT_HEADERS;
|
|
|
|
typedef PIMAGE_NT_HEADERS64 PIMAGE_NT_HEADERS;
|
|
|
|
#else
|
|
|
|
typedef IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER;
|
|
|
|
typedef PIMAGE_OPTIONAL_HEADER32 PIMAGE_OPTIONAL_HEADER;
|
|
|
|
typedef IMAGE_NT_HEADERS32 IMAGE_NT_HEADERS;
|
|
|
|
typedef PIMAGE_NT_HEADERS32 PIMAGE_NT_HEADERS;
|
|
|
|
#endif
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_ROM_HEADERS {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
IMAGE_FILE_HEADER FileHeader;
|
|
|
|
IMAGE_ROM_OPTIONAL_HEADER OptionalHeader;
|
|
|
|
} IMAGE_ROM_HEADERS, *PIMAGE_ROM_HEADERS;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_SECTION_HEADER {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
BYTE Name[IMAGE_SIZEOF_SHORT_NAME];
|
|
|
|
union {
|
|
|
|
DWORD PhysicalAddress;
|
|
|
|
DWORD VirtualSize;
|
|
|
|
} Misc;
|
|
|
|
DWORD VirtualAddress;
|
|
|
|
DWORD SizeOfRawData;
|
|
|
|
DWORD PointerToRawData;
|
|
|
|
DWORD PointerToRelocations;
|
|
|
|
DWORD PointerToLinenumbers;
|
|
|
|
WORD NumberOfRelocations;
|
|
|
|
WORD NumberOfLinenumbers;
|
|
|
|
DWORD Characteristics;
|
|
|
|
} IMAGE_SECTION_HEADER, *PIMAGE_SECTION_HEADER;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
|
|
|
#include <pshpack2.h>
|
2010-05-14 11:45:14 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_SYMBOL {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
union {
|
|
|
|
BYTE ShortName[8];
|
|
|
|
struct {
|
|
|
|
DWORD Short;
|
|
|
|
DWORD Long;
|
|
|
|
} Name;
|
|
|
|
PBYTE LongName[2];
|
|
|
|
} N;
|
|
|
|
DWORD Value;
|
|
|
|
SHORT SectionNumber;
|
|
|
|
WORD Type;
|
|
|
|
BYTE StorageClass;
|
|
|
|
BYTE NumberOfAuxSymbols;
|
|
|
|
} IMAGE_SYMBOL, *PIMAGE_SYMBOL;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
|
|
|
typedef struct _IMAGE_LINENUMBER {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
union {
|
|
|
|
DWORD SymbolTableIndex;
|
|
|
|
DWORD VirtualAddress;
|
|
|
|
} Type;
|
|
|
|
WORD Linenumber;
|
|
|
|
} IMAGE_LINENUMBER, UNALIGNED *PIMAGE_LINENUMBER;
|
|
|
|
|
|
|
|
typedef struct IMAGE_AUX_SYMBOL_TOKEN_DEF {
|
|
|
|
BYTE bAuxType;
|
|
|
|
BYTE bReserved;
|
|
|
|
DWORD SymbolTableIndex;
|
|
|
|
BYTE rgbReserved[12];
|
|
|
|
} IMAGE_AUX_SYMBOL_TOKEN_DEF, UNALIGNED *PIMAGE_AUX_SYMBOL_TOKEN_DEF;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef union _IMAGE_AUX_SYMBOL {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
struct {
|
|
|
|
DWORD TagIndex;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
WORD Linenumber;
|
|
|
|
WORD Size;
|
|
|
|
} LnSz;
|
|
|
|
DWORD TotalSize;
|
|
|
|
} Misc;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
DWORD PointerToLinenumber;
|
|
|
|
DWORD PointerToNextFunction;
|
|
|
|
} Function;
|
|
|
|
struct {
|
|
|
|
WORD Dimension[4];
|
|
|
|
} Array;
|
|
|
|
} FcnAry;
|
|
|
|
WORD TvIndex;
|
|
|
|
} Sym;
|
|
|
|
struct {
|
|
|
|
BYTE Name[IMAGE_SIZEOF_SYMBOL];
|
|
|
|
} File;
|
|
|
|
struct {
|
|
|
|
DWORD Length;
|
|
|
|
WORD NumberOfRelocations;
|
|
|
|
WORD NumberOfLinenumbers;
|
|
|
|
DWORD CheckSum;
|
|
|
|
SHORT Number;
|
|
|
|
BYTE Selection;
|
|
|
|
BYTE bReserved;
|
|
|
|
SHORT HighNumber;
|
|
|
|
} Section;
|
|
|
|
IMAGE_AUX_SYMBOL_TOKEN_DEF TokenDef;
|
|
|
|
struct {
|
|
|
|
DWORD crc;
|
|
|
|
BYTE rgbReserved[14];
|
|
|
|
} CRC;
|
|
|
|
} IMAGE_AUX_SYMBOL, *PIMAGE_AUX_SYMBOL;
|
2008-09-10 08:45:43 +00:00
|
|
|
|
2010-05-14 11:45:14 +00:00
|
|
|
typedef struct _IMAGE_RELOCATION {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
_ANONYMOUS_UNION union {
|
|
|
|
DWORD VirtualAddress;
|
|
|
|
DWORD RelocCount;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
DWORD SymbolTableIndex;
|
|
|
|
WORD Type;
|
|
|
|
} IMAGE_RELOCATION, UNALIGNED *PIMAGE_RELOCATION;
|
2010-05-14 11:45:14 +00:00
|
|
|
|
|
|
|
#include <poppack.h>
|
|
|
|
|
2008-09-10 08:45:43 +00:00
|
|
|
#ifndef __IMAGE_COR20_HEADER_DEFINED__
|
|
|
|
#define __IMAGE_COR20_HEADER_DEFINED__
|
|
|
|
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
typedef enum ReplacesCorHdrNumericDefines {
|
|
|
|
COMIMAGE_FLAGS_ILONLY = 0x00000001,
|
|
|
|
COMIMAGE_FLAGS_32BITREQUIRED = 0x00000002,
|
|
|
|
COMIMAGE_FLAGS_IL_LIBRARY = 0x00000004,
|
|
|
|
COMIMAGE_FLAGS_STRONGNAMESIGNED = 0x00000008,
|
|
|
|
COMIMAGE_FLAGS_NATIVE_ENTRYPOINT = 0x00000010,
|
|
|
|
COMIMAGE_FLAGS_TRACKDEBUGDATA = 0x00010000,
|
|
|
|
COR_VERSION_MAJOR_V2 = 2,
|
|
|
|
COR_VERSION_MAJOR = COR_VERSION_MAJOR_V2,
|
|
|
|
COR_VERSION_MINOR = 0,
|
|
|
|
COR_DELETED_NAME_LENGTH = 8,
|
|
|
|
COR_VTABLEGAP_NAME_LENGTH = 8,
|
|
|
|
NATIVE_TYPE_MAX_CB = 1,
|
|
|
|
COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE = 0xFF,
|
|
|
|
IMAGE_COR_MIH_METHODRVA = 0x01,
|
|
|
|
IMAGE_COR_MIH_EHRVA = 0x02,
|
|
|
|
IMAGE_COR_MIH_BASICBLOCK = 0x08,
|
|
|
|
COR_VTABLE_32BIT = 0x01,
|
|
|
|
COR_VTABLE_64BIT = 0x02,
|
|
|
|
COR_VTABLE_FROM_UNMANAGED = 0x04,
|
|
|
|
COR_VTABLE_FROM_UNMANAGED_RETAIN_APPDOMAIN = 0x08,
|
|
|
|
COR_VTABLE_CALL_MOST_DERIVED = 0x10,
|
|
|
|
IMAGE_COR_EATJ_THUNK_SIZE = 32,
|
|
|
|
MAX_CLASS_NAME = 1024,
|
|
|
|
MAX_PACKAGE_NAME = 1024
|
2008-09-10 08:45:43 +00:00
|
|
|
} ReplacesCorHdrNumericDefines;
|
|
|
|
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
typedef struct IMAGE_COR20_HEADER {
|
|
|
|
DWORD cb;
|
|
|
|
WORD MajorRuntimeVersion;
|
|
|
|
WORD MinorRuntimeVersion;
|
|
|
|
IMAGE_DATA_DIRECTORY MetaData;
|
|
|
|
DWORD Flags;
|
|
|
|
_ANONYMOUS_UNION union {
|
2008-09-10 08:45:43 +00:00
|
|
|
DWORD EntryPointToken;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD EntryPointRVA;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
IMAGE_DATA_DIRECTORY Resources;
|
|
|
|
IMAGE_DATA_DIRECTORY StrongNameSignature;
|
|
|
|
IMAGE_DATA_DIRECTORY CodeManagerTable;
|
|
|
|
IMAGE_DATA_DIRECTORY VTableFixups;
|
|
|
|
IMAGE_DATA_DIRECTORY ExportAddressTableJumps;
|
|
|
|
IMAGE_DATA_DIRECTORY ManagedNativeHeader;
|
2008-09-10 08:45:43 +00:00
|
|
|
} IMAGE_COR20_HEADER, *PIMAGE_COR20_HEADER;
|
|
|
|
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
#endif /* __IMAGE_COR20_HEADER_DEFINED__ */
|
2008-09-10 08:45:43 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_COFF_SYMBOLS_HEADER {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD NumberOfSymbols;
|
|
|
|
DWORD LvaToFirstSymbol;
|
|
|
|
DWORD NumberOfLinenumbers;
|
|
|
|
DWORD LvaToFirstLinenumber;
|
|
|
|
DWORD RvaToFirstByteOfCode;
|
|
|
|
DWORD RvaToLastByteOfCode;
|
|
|
|
DWORD RvaToFirstByteOfData;
|
|
|
|
DWORD RvaToLastByteOfData;
|
|
|
|
} IMAGE_COFF_SYMBOLS_HEADER, *PIMAGE_COFF_SYMBOLS_HEADER;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_BASE_RELOCATION {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD VirtualAddress;
|
|
|
|
DWORD SizeOfBlock;
|
|
|
|
} IMAGE_BASE_RELOCATION, UNALIGNED *PIMAGE_BASE_RELOCATION;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_ARCHIVE_MEMBER_HEADER {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
BYTE Name[16];
|
|
|
|
BYTE Date[12];
|
|
|
|
BYTE UserID[6];
|
|
|
|
BYTE GroupID[6];
|
|
|
|
BYTE Mode[8];
|
|
|
|
BYTE Size[10];
|
|
|
|
BYTE EndHeader[2];
|
|
|
|
} IMAGE_ARCHIVE_MEMBER_HEADER, *PIMAGE_ARCHIVE_MEMBER_HEADER;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_EXPORT_DIRECTORY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Characteristics;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD MajorVersion;
|
|
|
|
WORD MinorVersion;
|
|
|
|
DWORD Name;
|
|
|
|
DWORD Base;
|
|
|
|
DWORD NumberOfFunctions;
|
|
|
|
DWORD NumberOfNames;
|
|
|
|
DWORD AddressOfFunctions;
|
|
|
|
DWORD AddressOfNames;
|
|
|
|
DWORD AddressOfNameOrdinals;
|
|
|
|
} IMAGE_EXPORT_DIRECTORY, *PIMAGE_EXPORT_DIRECTORY;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_IMPORT_BY_NAME {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
WORD Hint;
|
|
|
|
BYTE Name[1];
|
|
|
|
} IMAGE_IMPORT_BY_NAME, *PIMAGE_IMPORT_BY_NAME;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
|
|
|
#include <pshpack8.h>
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
typedef struct _IMAGE_THUNK_DATA64 {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
union {
|
|
|
|
ULONGLONG ForwarderString;
|
|
|
|
ULONGLONG Function;
|
|
|
|
ULONGLONG Ordinal;
|
|
|
|
ULONGLONG AddressOfData;
|
|
|
|
} u1;
|
|
|
|
} IMAGE_THUNK_DATA64, *PIMAGE_THUNK_DATA64;
|
2009-06-29 17:38:57 +00:00
|
|
|
#include <poppack.h>
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
|
|
|
|
typedef struct _IMAGE_THUNK_DATA32 {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
union {
|
|
|
|
DWORD ForwarderString;
|
|
|
|
DWORD Function;
|
|
|
|
DWORD Ordinal;
|
|
|
|
DWORD AddressOfData;
|
|
|
|
} u1;
|
|
|
|
} IMAGE_THUNK_DATA32, *PIMAGE_THUNK_DATA32;
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
|
|
|
|
#define IMAGE_ORDINAL_FLAG64 0x8000000000000000ULL
|
|
|
|
#define IMAGE_ORDINAL_FLAG32 0x80000000
|
|
|
|
#define IMAGE_ORDINAL64(Ordinal) (Ordinal & 0xffff)
|
|
|
|
#define IMAGE_ORDINAL32(Ordinal) (Ordinal & 0xffff)
|
|
|
|
#define IMAGE_SNAP_BY_ORDINAL64(Ordinal) ((Ordinal & IMAGE_ORDINAL_FLAG64)!=0)
|
|
|
|
#define IMAGE_SNAP_BY_ORDINAL32(Ordinal) ((Ordinal & IMAGE_ORDINAL_FLAG32)!=0)
|
|
|
|
|
|
|
|
typedef VOID
|
|
|
|
(NTAPI *PIMAGE_TLS_CALLBACK)(PVOID DllHandle,DWORD Reason,PVOID Reserved);
|
|
|
|
|
|
|
|
typedef struct _IMAGE_TLS_DIRECTORY64 {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
ULONGLONG StartAddressOfRawData;
|
|
|
|
ULONGLONG EndAddressOfRawData;
|
|
|
|
ULONGLONG AddressOfIndex;
|
|
|
|
ULONGLONG AddressOfCallBacks;
|
|
|
|
DWORD SizeOfZeroFill;
|
|
|
|
DWORD Characteristics;
|
|
|
|
} IMAGE_TLS_DIRECTORY64, *PIMAGE_TLS_DIRECTORY64;
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
|
|
|
|
typedef struct _IMAGE_TLS_DIRECTORY32 {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD StartAddressOfRawData;
|
|
|
|
DWORD EndAddressOfRawData;
|
|
|
|
DWORD AddressOfIndex;
|
|
|
|
DWORD AddressOfCallBacks;
|
|
|
|
DWORD SizeOfZeroFill;
|
|
|
|
DWORD Characteristics;
|
|
|
|
} IMAGE_TLS_DIRECTORY32, *PIMAGE_TLS_DIRECTORY32;
|
|
|
|
|
Merge 34739 - 34769, 34796 - 34905, 34916 - 34967, 34970 - 35135, 35167, 35325, 35326, 35443 - 35506, 35510 - 35546, 35587, 35616,
35644 from ros-amd64-bringup branch:
- Update AMD64 intrinsic Interlocked functions
- Add _InterlockedExchange64 to intin_x86.h
-Fix definitions of IsBadHugeReadPtr, IsBadHugeWritePtr, IsBadReadPtr, IsBadStringPtrA, IsBadStringPtrW, IsBadWritePtr and SetProcessWorkingSetSize
- Define CONTEXT and XMM_SAVE_AREA32, taken from WINE
- Include _M_AMD64 for defintitions in ioaccess.h
- Add Interlocked intrinisc definitions for AMD64 platform
- Add KI_USER_SHARED_DATA and KeGetCurrentIrql() prototype to winddh
- Fix prototypes for KfAcquireSpinLock, KfReleaseSpinLock, KeAcquireInStackQueuedSpinLock and KeReleaseInStackQueuedSpinLock on amd64
- Fix rotl declaration, add mysteriously missing rotr.
winnt.h:
- Fix CONTEXT_AMD64 and friends, add various constants.
- Define RUNTIME_FUNCTION, RtlCaptureContext, RtlRestoreContext, RtlAddFunctionTable, RtlInstallFunctionTableCallback, RtlDeleteFunctionTable.
- Fix definitions for EXCEPTION_RECORD and friends to support amd64.
- Define IMAGE_THUNK_DATA64 and related constants.
- Define IMAGE_TLS_DIRECTORY64 and related constants.
- Remove WINEisms
- Remove multiple declarations and minor fixes.
- Fix KESEG0_BASE for amd64
- Fix definition for NdisCopyLookaheadData on amd64
- Only add function prototypes if NO_INTERLOCKED_INTRINSICS is defined
- Move the inlined InterlockedAnd/Or from rtl to winbase.h and rename it to InterlockedAnd/Or_Inline
- Fix TreeView_EnsureVisible macro.
- Add missing 64 bit intrinsic Interlocked functions
- Fix _InterlockedDecrement64
- Fix InterlockedExchangeAddSizeT
- Fix __writecrx instrinsics
- Fix ExQueryPoolBlockSize prototype
- Make KI_USER_SHARED_DATA and IMAGE_ORDINAL_FLAG64 a ULONGLONG
- Fix definition if IMAGE_OPTIONAL_HEADER64
- Add KPCR structure
- Add __readcrx intrinsics
- Ad some definitions to winddk.h
- Add a field for a DbgPrint function pointer to the ROS_LOADER_PARAMETER_BLOCK for early debug prints in ntoskrnl
- Update KPCR and KIPCR
- Add KeGetPcr() and update KeGetCurrentProcessorNumber
- Fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
- Implement byteswap intrinsics
- Add macro definitions for KeQuerySystemTime, KeQueryTickCount and KeQueryInterruptTime to ddk
- Add NtCurrentTeb inline function
- Update amd64 prototypes for KeGetCurrentIrql, KfRaiseIrql, KfLowerIrql, KeRaiseIrqlToDpcLevel, KeRaiseIrqlToSynchLevel, KeLowerIrql, KeRaiseIrql
- Implement __readcr8, __writecr8, __lidt and __sidt intrinsics.
- Implement KeGetCurrentIrql as intrinsic.
- Make KeGetCurrentIrql, KeLowerIrql, KfRaiseIrql, KeRaiseIrql, KeRaiseIrqlToDpcLevel and KeRaiseIrqlToSynchLevel intrinsics as in the WDK 2008.
- Fix _interlockedbittest intrinsics
- Fix __readmsr and __writemsr on amd64
- Fix __readgsqword, it was using a long internally. Add volatile keyword to segment addressing intrinsics. Add "memory" to clobber list on all those that do write.
- Merge __readcr and __writecr x86 / x64 definitions, because they are the same. Implement __readdr and __writedr for x64.
- __readcr3() returns an unsigned __int64, fix x86 MmGetPageDirectory accordingly.
svn path=/trunk/; revision=35646
2008-08-25 21:57:13 +00:00
|
|
|
#ifdef _WIN64
|
|
|
|
#define IMAGE_ORDINAL_FLAG IMAGE_ORDINAL_FLAG64
|
|
|
|
#define IMAGE_ORDINAL(Ordinal) IMAGE_ORDINAL64(Ordinal)
|
|
|
|
typedef IMAGE_THUNK_DATA64 IMAGE_THUNK_DATA;
|
|
|
|
typedef PIMAGE_THUNK_DATA64 PIMAGE_THUNK_DATA;
|
|
|
|
#define IMAGE_SNAP_BY_ORDINAL(Ordinal) IMAGE_SNAP_BY_ORDINAL64(Ordinal)
|
|
|
|
typedef IMAGE_TLS_DIRECTORY64 IMAGE_TLS_DIRECTORY;
|
|
|
|
typedef PIMAGE_TLS_DIRECTORY64 PIMAGE_TLS_DIRECTORY;
|
|
|
|
#else
|
|
|
|
#define IMAGE_ORDINAL_FLAG IMAGE_ORDINAL_FLAG32
|
|
|
|
#define IMAGE_ORDINAL(Ordinal) IMAGE_ORDINAL32(Ordinal)
|
|
|
|
typedef IMAGE_THUNK_DATA32 IMAGE_THUNK_DATA;
|
|
|
|
typedef PIMAGE_THUNK_DATA32 PIMAGE_THUNK_DATA;
|
|
|
|
#define IMAGE_SNAP_BY_ORDINAL(Ordinal) IMAGE_SNAP_BY_ORDINAL32(Ordinal)
|
|
|
|
typedef IMAGE_TLS_DIRECTORY32 IMAGE_TLS_DIRECTORY;
|
|
|
|
typedef PIMAGE_TLS_DIRECTORY32 PIMAGE_TLS_DIRECTORY;
|
|
|
|
#endif
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_IMPORT_DESCRIPTOR {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
_ANONYMOUS_UNION union {
|
|
|
|
DWORD Characteristics;
|
|
|
|
DWORD OriginalFirstThunk;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
DWORD ForwarderChain;
|
|
|
|
DWORD Name;
|
|
|
|
DWORD FirstThunk;
|
|
|
|
} IMAGE_IMPORT_DESCRIPTOR, UNALIGNED *PIMAGE_IMPORT_DESCRIPTOR;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_BOUND_IMPORT_DESCRIPTOR {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD OffsetModuleName;
|
|
|
|
WORD NumberOfModuleForwarderRefs;
|
|
|
|
} IMAGE_BOUND_IMPORT_DESCRIPTOR, *PIMAGE_BOUND_IMPORT_DESCRIPTOR;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_BOUND_FORWARDER_REF {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD OffsetModuleName;
|
|
|
|
WORD Reserved;
|
|
|
|
} IMAGE_BOUND_FORWARDER_REF, *PIMAGE_BOUND_FORWARDER_REF;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_RESOURCE_DIRECTORY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Characteristics;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD MajorVersion;
|
|
|
|
WORD MinorVersion;
|
|
|
|
WORD NumberOfNamedEntries;
|
|
|
|
WORD NumberOfIdEntries;
|
|
|
|
} IMAGE_RESOURCE_DIRECTORY, *PIMAGE_RESOURCE_DIRECTORY;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_RESOURCE_DIRECTORY_ENTRY {
|
|
|
|
_ANONYMOUS_UNION union {
|
|
|
|
_ANONYMOUS_STRUCT struct {
|
|
|
|
DWORD NameOffset:31;
|
|
|
|
DWORD NameIsString:1;
|
2010-07-31 21:40:40 +00:00
|
|
|
} DUMMYSTRUCTNAME1;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Name;
|
|
|
|
WORD Id;
|
2010-07-31 21:40:40 +00:00
|
|
|
} DUMMYUNIONNAME1;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
_ANONYMOUS_UNION union {
|
|
|
|
DWORD OffsetToData;
|
|
|
|
_ANONYMOUS_STRUCT struct {
|
|
|
|
DWORD OffsetToDirectory:31;
|
|
|
|
DWORD DataIsDirectory:1;
|
2010-07-31 21:40:40 +00:00
|
|
|
} DUMMYSTRUCTNAME3;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
} DUMMYUNIONNAME2;
|
|
|
|
} IMAGE_RESOURCE_DIRECTORY_ENTRY, *PIMAGE_RESOURCE_DIRECTORY_ENTRY;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_RESOURCE_DIRECTORY_STRING {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
WORD Length;
|
|
|
|
CHAR NameString[1];
|
|
|
|
} IMAGE_RESOURCE_DIRECTORY_STRING, *PIMAGE_RESOURCE_DIRECTORY_STRING;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_RESOURCE_DIR_STRING_U {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
WORD Length;
|
|
|
|
WCHAR NameString[1];
|
|
|
|
} IMAGE_RESOURCE_DIR_STRING_U, *PIMAGE_RESOURCE_DIR_STRING_U;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_RESOURCE_DATA_ENTRY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD OffsetToData;
|
|
|
|
DWORD Size;
|
|
|
|
DWORD CodePage;
|
|
|
|
DWORD Reserved;
|
|
|
|
} IMAGE_RESOURCE_DATA_ENTRY, *PIMAGE_RESOURCE_DATA_ENTRY;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_LOAD_CONFIG_DIRECTORY32 {
|
|
|
|
DWORD Size;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD MajorVersion;
|
|
|
|
WORD MinorVersion;
|
|
|
|
DWORD GlobalFlagsClear;
|
|
|
|
DWORD GlobalFlagsSet;
|
|
|
|
DWORD CriticalSectionDefaultTimeout;
|
|
|
|
DWORD DeCommitFreeBlockThreshold;
|
|
|
|
DWORD DeCommitTotalFreeThreshold;
|
|
|
|
DWORD LockPrefixTable;
|
|
|
|
DWORD MaximumAllocationSize;
|
|
|
|
DWORD VirtualMemoryThreshold;
|
|
|
|
DWORD ProcessHeapFlags;
|
|
|
|
DWORD ProcessAffinityMask;
|
|
|
|
WORD CSDVersion;
|
|
|
|
WORD Reserved1;
|
|
|
|
DWORD EditList;
|
|
|
|
DWORD SecurityCookie;
|
|
|
|
DWORD SEHandlerTable;
|
|
|
|
DWORD SEHandlerCount;
|
|
|
|
} IMAGE_LOAD_CONFIG_DIRECTORY32, *PIMAGE_LOAD_CONFIG_DIRECTORY32;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_LOAD_CONFIG_DIRECTORY64 {
|
|
|
|
DWORD Size;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD MajorVersion;
|
|
|
|
WORD MinorVersion;
|
|
|
|
DWORD GlobalFlagsClear;
|
|
|
|
DWORD GlobalFlagsSet;
|
|
|
|
DWORD CriticalSectionDefaultTimeout;
|
|
|
|
ULONGLONG DeCommitFreeBlockThreshold;
|
|
|
|
ULONGLONG DeCommitTotalFreeThreshold;
|
|
|
|
ULONGLONG LockPrefixTable;
|
|
|
|
ULONGLONG MaximumAllocationSize;
|
|
|
|
ULONGLONG VirtualMemoryThreshold;
|
|
|
|
ULONGLONG ProcessAffinityMask;
|
|
|
|
DWORD ProcessHeapFlags;
|
|
|
|
WORD CSDVersion;
|
|
|
|
WORD Reserved1;
|
|
|
|
ULONGLONG EditList;
|
|
|
|
ULONGLONG SecurityCookie;
|
|
|
|
ULONGLONG SEHandlerTable;
|
|
|
|
ULONGLONG SEHandlerCount;
|
|
|
|
} IMAGE_LOAD_CONFIG_DIRECTORY64, *PIMAGE_LOAD_CONFIG_DIRECTORY64;
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
typedef IMAGE_LOAD_CONFIG_DIRECTORY64 IMAGE_LOAD_CONFIG_DIRECTORY;
|
|
|
|
typedef PIMAGE_LOAD_CONFIG_DIRECTORY64 PIMAGE_LOAD_CONFIG_DIRECTORY;
|
|
|
|
#else
|
|
|
|
typedef IMAGE_LOAD_CONFIG_DIRECTORY32 IMAGE_LOAD_CONFIG_DIRECTORY;
|
|
|
|
typedef PIMAGE_LOAD_CONFIG_DIRECTORY32 PIMAGE_LOAD_CONFIG_DIRECTORY;
|
|
|
|
#endif
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_RUNTIME_FUNCTION_ENTRY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD BeginAddress;
|
|
|
|
DWORD EndAddress;
|
|
|
|
DWORD UnwindInfoAddress;
|
|
|
|
} IMAGE_RUNTIME_FUNCTION_ENTRY, *PIMAGE_RUNTIME_FUNCTION_ENTRY;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_DEBUG_DIRECTORY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Characteristics;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD MajorVersion;
|
|
|
|
WORD MinorVersion;
|
|
|
|
DWORD Type;
|
|
|
|
DWORD SizeOfData;
|
|
|
|
DWORD AddressOfRawData;
|
|
|
|
DWORD PointerToRawData;
|
|
|
|
} IMAGE_DEBUG_DIRECTORY, *PIMAGE_DEBUG_DIRECTORY;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _FPO_DATA {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD ulOffStart;
|
|
|
|
DWORD cbProcSize;
|
|
|
|
DWORD cdwLocals;
|
|
|
|
WORD cdwParams;
|
|
|
|
WORD cbProlog:8;
|
|
|
|
WORD cbRegs:3;
|
|
|
|
WORD fHasSEH:1;
|
|
|
|
WORD fUseBP:1;
|
|
|
|
WORD reserved:1;
|
|
|
|
WORD cbFrame:2;
|
|
|
|
} FPO_DATA, *PFPO_DATA;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_DEBUG_MISC {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD DataType;
|
|
|
|
DWORD Length;
|
|
|
|
BOOLEAN Unicode;
|
|
|
|
BYTE Reserved[3];
|
|
|
|
BYTE Data[1];
|
|
|
|
} IMAGE_DEBUG_MISC, *PIMAGE_DEBUG_MISC;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_FUNCTION_ENTRY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD StartingAddress;
|
|
|
|
DWORD EndingAddress;
|
|
|
|
DWORD EndOfPrologue;
|
|
|
|
} IMAGE_FUNCTION_ENTRY, *PIMAGE_FUNCTION_ENTRY;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _IMAGE_SEPARATE_DEBUG_HEADER {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
WORD Signature;
|
|
|
|
WORD Flags;
|
|
|
|
WORD Machine;
|
|
|
|
WORD Characteristics;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
DWORD CheckSum;
|
|
|
|
DWORD ImageBase;
|
|
|
|
DWORD SizeOfImage;
|
|
|
|
DWORD NumberOfSections;
|
|
|
|
DWORD ExportedNamesSize;
|
|
|
|
DWORD DebugDirectorySize;
|
|
|
|
DWORD SectionAlignment;
|
|
|
|
DWORD Reserved[2];
|
|
|
|
} IMAGE_SEPARATE_DEBUG_HEADER, *PIMAGE_SEPARATE_DEBUG_HEADER;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef enum _CM_SERVICE_NODE_TYPE {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DriverType = SERVICE_KERNEL_DRIVER,
|
|
|
|
FileSystemType = SERVICE_FILE_SYSTEM_DRIVER,
|
|
|
|
Win32ServiceOwnProcess = SERVICE_WIN32_OWN_PROCESS,
|
|
|
|
Win32ServiceShareProcess = SERVICE_WIN32_SHARE_PROCESS,
|
|
|
|
AdapterType = SERVICE_ADAPTER,
|
|
|
|
RecognizerType = SERVICE_RECOGNIZER_DRIVER
|
2005-05-08 17:44:37 +00:00
|
|
|
} SERVICE_NODE_TYPE;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef enum _CM_SERVICE_LOAD_TYPE {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
BootLoad = SERVICE_BOOT_START,
|
|
|
|
SystemLoad = SERVICE_SYSTEM_START,
|
|
|
|
AutoLoad = SERVICE_AUTO_START,
|
|
|
|
DemandLoad = SERVICE_DEMAND_START,
|
|
|
|
DisableLoad = SERVICE_DISABLED
|
2005-05-08 17:44:37 +00:00
|
|
|
} SERVICE_LOAD_TYPE;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef enum _CM_ERROR_CONTROL_TYPE {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
IgnoreError = SERVICE_ERROR_IGNORE,
|
|
|
|
NormalError = SERVICE_ERROR_NORMAL,
|
|
|
|
SevereError = SERVICE_ERROR_SEVERE,
|
|
|
|
CriticalError = SERVICE_ERROR_CRITICAL
|
2005-05-08 17:44:37 +00:00
|
|
|
} SERVICE_ERROR_TYPE;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _NT_TIB {
|
2010-05-15 16:53:39 +00:00
|
|
|
struct _EXCEPTION_REGISTRATION_RECORD *ExceptionList;
|
|
|
|
PVOID StackBase;
|
|
|
|
PVOID StackLimit;
|
|
|
|
PVOID SubSystemTib;
|
|
|
|
_ANONYMOUS_UNION union {
|
|
|
|
PVOID FiberData;
|
|
|
|
DWORD Version;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
PVOID ArbitraryUserPointer;
|
|
|
|
struct _NT_TIB *Self;
|
2005-05-08 17:44:37 +00:00
|
|
|
} NT_TIB,*PNT_TIB;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2009-12-16 23:39:20 +00:00
|
|
|
typedef struct _NT_TIB32 {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD ExceptionList;
|
|
|
|
DWORD StackBase;
|
|
|
|
DWORD StackLimit;
|
|
|
|
DWORD SubSystemTib;
|
|
|
|
_ANONYMOUS_UNION union {
|
|
|
|
DWORD FiberData;
|
|
|
|
DWORD Version;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
DWORD ArbitraryUserPointer;
|
|
|
|
DWORD Self;
|
2009-12-16 23:39:20 +00:00
|
|
|
} NT_TIB32,*PNT_TIB32;
|
|
|
|
|
|
|
|
typedef struct _NT_TIB64 {
|
2010-05-15 16:53:39 +00:00
|
|
|
DWORD64 ExceptionList;
|
|
|
|
DWORD64 StackBase;
|
|
|
|
DWORD64 StackLimit;
|
|
|
|
DWORD64 SubSystemTib;
|
|
|
|
_ANONYMOUS_UNION union {
|
|
|
|
DWORD64 FiberData;
|
|
|
|
DWORD Version;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
DWORD64 ArbitraryUserPointer;
|
|
|
|
DWORD64 Self;
|
2009-12-16 23:39:20 +00:00
|
|
|
} NT_TIB64,*PNT_TIB64;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _REPARSE_GUID_DATA_BUFFER {
|
2010-05-16 12:23:45 +00:00
|
|
|
DWORD ReparseTag;
|
|
|
|
WORD ReparseDataLength;
|
|
|
|
WORD Reserved;
|
|
|
|
GUID ReparseGuid;
|
|
|
|
struct {
|
|
|
|
BYTE DataBuffer[1];
|
|
|
|
} GenericReparseBuffer;
|
2005-05-08 17:44:37 +00:00
|
|
|
} REPARSE_GUID_DATA_BUFFER, *PREPARSE_GUID_DATA_BUFFER;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _REPARSE_POINT_INFORMATION {
|
|
|
|
WORD ReparseDataLength;
|
|
|
|
WORD UnparsedNameLength;
|
|
|
|
} REPARSE_POINT_INFORMATION, *PREPARSE_POINT_INFORMATION;
|
|
|
|
|
|
|
|
typedef union _FILE_SEGMENT_ELEMENT {
|
2010-05-16 12:23:45 +00:00
|
|
|
PVOID64 Buffer;
|
|
|
|
ULONGLONG Alignment;
|
|
|
|
} FILE_SEGMENT_ELEMENT, *PFILE_SEGMENT_ELEMENT;
|
2005-05-08 17:44:37 +00:00
|
|
|
|
|
|
|
/* JOBOBJECT_BASIC_LIMIT_INFORMATION.LimitFlags constants */
|
|
|
|
#define JOB_OBJECT_LIMIT_WORKINGSET 0x0001
|
|
|
|
#define JOB_OBJECT_LIMIT_PROCESS_TIME 0x0002
|
|
|
|
#define JOB_OBJECT_LIMIT_JOB_TIME 0x0004
|
|
|
|
#define JOB_OBJECT_LIMIT_ACTIVE_PROCESS 0x0008
|
|
|
|
#define JOB_OBJECT_LIMIT_AFFINITY 0x0010
|
|
|
|
#define JOB_OBJECT_LIMIT_PRIORITY_CLASS 0x0020
|
|
|
|
#define JOB_OBJECT_LIMIT_PRESERVE_JOB_TIME 0x0040
|
|
|
|
#define JOB_OBJECT_LIMIT_SCHEDULING_CLASS 0x0080
|
|
|
|
#define JOB_OBJECT_LIMIT_PROCESS_MEMORY 0x0100
|
|
|
|
#define JOB_OBJECT_LIMIT_JOB_MEMORY 0x0200
|
|
|
|
#define JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION 0x0400
|
|
|
|
#define JOB_OBJECT_BREAKAWAY_OK 0x0800
|
|
|
|
#define JOB_OBJECT_SILENT_BREAKAWAY 0x1000
|
|
|
|
|
|
|
|
/* JOBOBJECT_BASIC_UI_RESTRICTIONS.UIRestrictionsClass constants */
|
|
|
|
#define JOB_OBJECT_UILIMIT_HANDLES 0x0001
|
|
|
|
#define JOB_OBJECT_UILIMIT_READCLIPBOARD 0x0002
|
|
|
|
#define JOB_OBJECT_UILIMIT_WRITECLIPBOARD 0x0004
|
|
|
|
#define JOB_OBJECT_UILIMIT_SYSTEMPARAMETERS 0x0008
|
|
|
|
#define JOB_OBJECT_UILIMIT_DISPLAYSETTINGS 0x0010
|
|
|
|
#define JOB_OBJECT_UILIMIT_GLOBALATOMS 0x0020
|
|
|
|
#define JOB_OBJECT_UILIMIT_DESKTOP 0x0040
|
|
|
|
#define JOB_OBJECT_UILIMIT_EXITWINDOWS 0x0080
|
|
|
|
|
|
|
|
/* JOBOBJECT_SECURITY_LIMIT_INFORMATION.SecurityLimitFlags constants */
|
|
|
|
#define JOB_OBJECT_SECURITY_NO_ADMIN 0x0001
|
|
|
|
#define JOB_OBJECT_SECURITY_RESTRICTED_TOKEN 0x0002
|
|
|
|
#define JOB_OBJECT_SECURITY_ONLY_TOKEN 0x0004
|
|
|
|
#define JOB_OBJECT_SECURITY_FILTER_TOKENS 0x0008
|
|
|
|
|
|
|
|
/* JOBOBJECT_END_OF_JOB_TIME_INFORMATION.EndOfJobTimeAction constants */
|
|
|
|
#define JOB_OBJECT_TERMINATE_AT_END_OF_JOB 0
|
|
|
|
#define JOB_OBJECT_POST_AT_END_OF_JOB 1
|
|
|
|
|
|
|
|
#define JOB_OBJECT_MSG_END_OF_JOB_TIME 1
|
|
|
|
#define JOB_OBJECT_MSG_END_OF_PROCESS_TIME 2
|
|
|
|
#define JOB_OBJECT_MSG_ACTIVE_PROCESS_LIMIT 3
|
|
|
|
#define JOB_OBJECT_MSG_ACTIVE_PROCESS_ZERO 4
|
|
|
|
#define JOB_OBJECT_MSG_NEW_PROCESS 6
|
|
|
|
#define JOB_OBJECT_MSG_EXIT_PROCESS 7
|
|
|
|
#define JOB_OBJECT_MSG_ABNORMAL_EXIT_PROCESS 8
|
|
|
|
#define JOB_OBJECT_MSG_PROCESS_MEMORY_LIMIT 9
|
|
|
|
#define JOB_OBJECT_MSG_JOB_MEMORY_LIMIT 10
|
|
|
|
|
2005-07-26 14:00:45 +00:00
|
|
|
#define JOB_OBJECT_ASSIGN_PROCESS 1
|
|
|
|
#define JOB_OBJECT_SET_ATTRIBUTES 2
|
|
|
|
#define JOB_OBJECT_QUERY 4
|
|
|
|
#define JOB_OBJECT_TERMINATE 8
|
|
|
|
#define JOB_OBJECT_SET_SECURITY_ATTRIBUTES 16
|
|
|
|
#define JOB_OBJECT_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|31)
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef enum _JOBOBJECTINFOCLASS {
|
2010-05-16 12:23:45 +00:00
|
|
|
JobObjectBasicAccountingInformation = 1,
|
|
|
|
JobObjectBasicLimitInformation,
|
|
|
|
JobObjectBasicProcessIdList,
|
|
|
|
JobObjectBasicUIRestrictions,
|
|
|
|
JobObjectSecurityLimitInformation,
|
|
|
|
JobObjectEndOfJobTimeInformation,
|
|
|
|
JobObjectAssociateCompletionPortInformation,
|
|
|
|
JobObjectBasicAndIoAccountingInformation,
|
|
|
|
JobObjectExtendedLimitInformation,
|
|
|
|
JobObjectJobSetInformation,
|
|
|
|
JobObjectGroupInformation,
|
|
|
|
MaxJobObjectInfoClass
|
2005-05-08 17:44:37 +00:00
|
|
|
} JOBOBJECTINFOCLASS;
|
2005-09-05 07:51:15 +00:00
|
|
|
|
2010-05-15 16:53:39 +00:00
|
|
|
typedef struct _JOB_SET_ARRAY {
|
|
|
|
HANDLE JobHandle;
|
|
|
|
DWORD MemberLevel;
|
|
|
|
DWORD Flags;
|
2006-10-23 18:35:13 +00:00
|
|
|
} JOB_SET_ARRAY, *PJOB_SET_ARRAY;
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _JOBOBJECT_BASIC_ACCOUNTING_INFORMATION {
|
2010-05-16 12:23:45 +00:00
|
|
|
LARGE_INTEGER TotalUserTime;
|
|
|
|
LARGE_INTEGER TotalKernelTime;
|
|
|
|
LARGE_INTEGER ThisPeriodTotalUserTime;
|
|
|
|
LARGE_INTEGER ThisPeriodTotalKernelTime;
|
|
|
|
DWORD TotalPageFaultCount;
|
|
|
|
DWORD TotalProcesses;
|
|
|
|
DWORD ActiveProcesses;
|
|
|
|
DWORD TotalTerminatedProcesses;
|
2005-05-08 17:44:37 +00:00
|
|
|
} JOBOBJECT_BASIC_ACCOUNTING_INFORMATION,*PJOBOBJECT_BASIC_ACCOUNTING_INFORMATION;
|
2010-05-16 12:23:45 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _JOBOBJECT_BASIC_LIMIT_INFORMATION {
|
2010-05-16 12:23:45 +00:00
|
|
|
LARGE_INTEGER PerProcessUserTimeLimit;
|
|
|
|
LARGE_INTEGER PerJobUserTimeLimit;
|
|
|
|
DWORD LimitFlags;
|
|
|
|
SIZE_T MinimumWorkingSetSize;
|
|
|
|
SIZE_T MaximumWorkingSetSize;
|
|
|
|
DWORD ActiveProcessLimit;
|
|
|
|
ULONG_PTR Affinity;
|
|
|
|
DWORD PriorityClass;
|
|
|
|
DWORD SchedulingClass;
|
2005-05-08 17:44:37 +00:00
|
|
|
} JOBOBJECT_BASIC_LIMIT_INFORMATION,*PJOBOBJECT_BASIC_LIMIT_INFORMATION;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _JOBOBJECT_BASIC_PROCESS_ID_LIST {
|
2010-05-16 12:23:45 +00:00
|
|
|
DWORD NumberOfAssignedProcesses;
|
|
|
|
DWORD NumberOfProcessIdsInList;
|
|
|
|
ULONG_PTR ProcessIdList[1];
|
2005-05-08 17:44:37 +00:00
|
|
|
} JOBOBJECT_BASIC_PROCESS_ID_LIST, *PJOBOBJECT_BASIC_PROCESS_ID_LIST;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _JOBOBJECT_BASIC_UI_RESTRICTIONS {
|
2010-05-16 12:23:45 +00:00
|
|
|
DWORD UIRestrictionsClass;
|
2005-05-08 17:44:37 +00:00
|
|
|
} JOBOBJECT_BASIC_UI_RESTRICTIONS,*PJOBOBJECT_BASIC_UI_RESTRICTIONS;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _JOBOBJECT_SECURITY_LIMIT_INFORMATION {
|
2010-05-16 12:23:45 +00:00
|
|
|
DWORD SecurityLimitFlags;
|
|
|
|
HANDLE JobToken;
|
|
|
|
PTOKEN_GROUPS SidsToDisable;
|
|
|
|
PTOKEN_PRIVILEGES PrivilegesToDelete;
|
|
|
|
PTOKEN_GROUPS RestrictedSids;
|
2005-05-08 17:44:37 +00:00
|
|
|
} JOBOBJECT_SECURITY_LIMIT_INFORMATION,*PJOBOBJECT_SECURITY_LIMIT_INFORMATION;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _JOBOBJECT_END_OF_JOB_TIME_INFORMATION {
|
2010-05-16 12:23:45 +00:00
|
|
|
DWORD EndOfJobTimeAction;
|
2005-05-08 17:44:37 +00:00
|
|
|
} JOBOBJECT_END_OF_JOB_TIME_INFORMATION,*PJOBOBJECT_END_OF_JOB_TIME_INFORMATION;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _JOBOBJECT_ASSOCIATE_COMPLETION_PORT {
|
2010-05-16 12:23:45 +00:00
|
|
|
PVOID CompletionKey;
|
|
|
|
HANDLE CompletionPort;
|
2005-05-08 17:44:37 +00:00
|
|
|
} JOBOBJECT_ASSOCIATE_COMPLETION_PORT,*PJOBOBJECT_ASSOCIATE_COMPLETION_PORT;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION {
|
2010-05-16 12:23:45 +00:00
|
|
|
JOBOBJECT_BASIC_ACCOUNTING_INFORMATION BasicInfo;
|
|
|
|
IO_COUNTERS IoInfo;
|
2005-05-08 17:44:37 +00:00
|
|
|
} JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION,*PJOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _JOBOBJECT_EXTENDED_LIMIT_INFORMATION {
|
2010-05-16 12:23:45 +00:00
|
|
|
JOBOBJECT_BASIC_LIMIT_INFORMATION BasicLimitInformation;
|
|
|
|
IO_COUNTERS IoInfo;
|
|
|
|
SIZE_T ProcessMemoryLimit;
|
|
|
|
SIZE_T JobMemoryLimit;
|
|
|
|
SIZE_T PeakProcessMemoryUsed;
|
|
|
|
SIZE_T PeakJobMemoryUsed;
|
2005-05-08 17:44:37 +00:00
|
|
|
} JOBOBJECT_EXTENDED_LIMIT_INFORMATION,*PJOBOBJECT_EXTENDED_LIMIT_INFORMATION;
|
2009-06-29 17:38:57 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _JOBOBJECT_JOBSET_INFORMATION {
|
2010-05-16 12:23:45 +00:00
|
|
|
DWORD MemberLevel;
|
2005-05-08 17:44:37 +00:00
|
|
|
} JOBOBJECT_JOBSET_INFORMATION,*PJOBOBJECT_JOBSET_INFORMATION;
|
|
|
|
|
2005-05-09 01:50:07 +00:00
|
|
|
/* Fixme: Making these defines conditional on WINVER will break ddk includes */
|
2005-05-08 17:44:37 +00:00
|
|
|
#if 1 /* (WINVER >= 0x0500) */
|
|
|
|
|
|
|
|
#define ES_SYSTEM_REQUIRED 0x00000001
|
|
|
|
#define ES_DISPLAY_REQUIRED 0x00000002
|
|
|
|
#define ES_USER_PRESENT 0x00000004
|
|
|
|
#define ES_CONTINUOUS 0x80000000
|
|
|
|
|
|
|
|
typedef enum _LATENCY_TIME {
|
2010-05-16 12:23:45 +00:00
|
|
|
LT_DONT_CARE,
|
|
|
|
LT_LOWEST_LATENCY
|
2005-05-08 17:44:37 +00:00
|
|
|
} LATENCY_TIME, *PLATENCY_TIME;
|
|
|
|
|
|
|
|
typedef enum _SYSTEM_POWER_STATE {
|
2010-05-16 12:23:45 +00:00
|
|
|
PowerSystemUnspecified = 0,
|
|
|
|
PowerSystemWorking,
|
|
|
|
PowerSystemSleeping1,
|
|
|
|
PowerSystemSleeping2,
|
|
|
|
PowerSystemSleeping3,
|
|
|
|
PowerSystemHibernate,
|
|
|
|
PowerSystemShutdown,
|
|
|
|
PowerSystemMaximum
|
2005-05-08 17:44:37 +00:00
|
|
|
} SYSTEM_POWER_STATE, *PSYSTEM_POWER_STATE;
|
2010-05-16 12:23:45 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#define POWER_SYSTEM_MAXIMUM PowerSystemMaximum
|
|
|
|
|
|
|
|
typedef enum {
|
2010-05-16 12:23:45 +00:00
|
|
|
PowerActionNone = 0,
|
|
|
|
PowerActionReserved,
|
|
|
|
PowerActionSleep,
|
|
|
|
PowerActionHibernate,
|
|
|
|
PowerActionShutdown,
|
|
|
|
PowerActionShutdownReset,
|
|
|
|
PowerActionShutdownOff,
|
|
|
|
PowerActionWarmEject
|
2005-05-08 17:44:37 +00:00
|
|
|
} POWER_ACTION, *PPOWER_ACTION;
|
|
|
|
|
|
|
|
typedef enum _DEVICE_POWER_STATE {
|
2010-05-16 12:23:45 +00:00
|
|
|
PowerDeviceUnspecified = 0,
|
|
|
|
PowerDeviceD0,
|
|
|
|
PowerDeviceD1,
|
|
|
|
PowerDeviceD2,
|
|
|
|
PowerDeviceD3,
|
|
|
|
PowerDeviceMaximum
|
2005-05-08 17:44:37 +00:00
|
|
|
} DEVICE_POWER_STATE, *PDEVICE_POWER_STATE;
|
|
|
|
|
2010-05-16 12:23:45 +00:00
|
|
|
#if (NTDDI_VERSION >= NTDDI_WINXP) || !defined(_BATCLASS_)
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct {
|
2010-05-16 12:23:45 +00:00
|
|
|
DWORD Granularity;
|
|
|
|
DWORD Capacity;
|
2005-05-08 17:44:37 +00:00
|
|
|
} BATTERY_REPORTING_SCALE, *PBATTERY_REPORTING_SCALE;
|
2010-05-16 12:23:45 +00:00
|
|
|
#endif
|
2005-05-08 17:44:37 +00:00
|
|
|
|
|
|
|
typedef struct _POWER_ACTION_POLICY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
POWER_ACTION Action;
|
|
|
|
DWORD Flags;
|
|
|
|
DWORD EventCode;
|
2005-05-08 17:44:37 +00:00
|
|
|
} POWER_ACTION_POLICY, *PPOWER_ACTION_POLICY;
|
|
|
|
|
|
|
|
/* POWER_ACTION_POLICY.Flags constants */
|
|
|
|
#define POWER_ACTION_QUERY_ALLOWED 0x00000001
|
|
|
|
#define POWER_ACTION_UI_ALLOWED 0x00000002
|
|
|
|
#define POWER_ACTION_OVERRIDE_APPS 0x00000004
|
|
|
|
#define POWER_ACTION_LIGHTEST_FIRST 0x10000000
|
|
|
|
#define POWER_ACTION_LOCK_CONSOLE 0x20000000
|
|
|
|
#define POWER_ACTION_DISABLE_WAKES 0x40000000
|
|
|
|
#define POWER_ACTION_CRITICAL 0x80000000
|
|
|
|
|
|
|
|
/* POWER_ACTION_POLICY.EventCode constants */
|
|
|
|
#define POWER_LEVEL_USER_NOTIFY_TEXT 0x00000001
|
|
|
|
#define POWER_LEVEL_USER_NOTIFY_SOUND 0x00000002
|
|
|
|
#define POWER_LEVEL_USER_NOTIFY_EXEC 0x00000004
|
|
|
|
#define POWER_USER_NOTIFY_BUTTON 0x00000008
|
|
|
|
#define POWER_USER_NOTIFY_SHUTDOWN 0x00000010
|
|
|
|
#define POWER_FORCE_TRIGGER_RESET 0x80000000
|
|
|
|
|
|
|
|
#define DISCHARGE_POLICY_CRITICAL 0
|
|
|
|
#define DISCHARGE_POLICY_LOW 1
|
|
|
|
#define NUM_DISCHARGE_POLICIES 4
|
|
|
|
|
|
|
|
#define PO_THROTTLE_NONE 0
|
|
|
|
#define PO_THROTTLE_CONSTANT 1
|
|
|
|
#define PO_THROTTLE_DEGRADE 2
|
|
|
|
#define PO_THROTTLE_ADAPTIVE 3
|
|
|
|
#define PO_THROTTLE_MAXIMUM 4
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_POWER_LEVEL {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
BOOLEAN Enable;
|
|
|
|
BYTE Spare[3];
|
|
|
|
DWORD BatteryLevel;
|
|
|
|
POWER_ACTION_POLICY PowerPolicy;
|
|
|
|
SYSTEM_POWER_STATE MinSystemState;
|
2005-05-08 17:44:37 +00:00
|
|
|
} SYSTEM_POWER_LEVEL, *PSYSTEM_POWER_LEVEL;
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_POWER_POLICY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Revision;
|
|
|
|
POWER_ACTION_POLICY PowerButton;
|
|
|
|
POWER_ACTION_POLICY SleepButton;
|
|
|
|
POWER_ACTION_POLICY LidClose;
|
|
|
|
SYSTEM_POWER_STATE LidOpenWake;
|
|
|
|
DWORD Reserved;
|
|
|
|
POWER_ACTION_POLICY Idle;
|
|
|
|
DWORD IdleTimeout;
|
|
|
|
BYTE IdleSensitivity;
|
|
|
|
BYTE DynamicThrottle;
|
|
|
|
BYTE Spare2[2];
|
|
|
|
SYSTEM_POWER_STATE MinSleep;
|
|
|
|
SYSTEM_POWER_STATE MaxSleep;
|
|
|
|
SYSTEM_POWER_STATE ReducedLatencySleep;
|
|
|
|
DWORD WinLogonFlags;
|
|
|
|
DWORD Spare3;
|
|
|
|
DWORD DozeS4Timeout;
|
|
|
|
DWORD BroadcastCapacityResolution;
|
|
|
|
SYSTEM_POWER_LEVEL DischargePolicy[NUM_DISCHARGE_POLICIES];
|
|
|
|
DWORD VideoTimeout;
|
|
|
|
BOOLEAN VideoDimDisplay;
|
|
|
|
DWORD VideoReserved[3];
|
|
|
|
DWORD SpindownTimeout;
|
|
|
|
BOOLEAN OptimizeForPower;
|
|
|
|
BYTE FanThrottleTolerance;
|
|
|
|
BYTE ForcedThrottle;
|
|
|
|
BYTE MinThrottle;
|
|
|
|
POWER_ACTION_POLICY OverThrottled;
|
2005-05-08 17:44:37 +00:00
|
|
|
} SYSTEM_POWER_POLICY, *PSYSTEM_POWER_POLICY;
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_POWER_CAPABILITIES {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
BOOLEAN PowerButtonPresent;
|
|
|
|
BOOLEAN SleepButtonPresent;
|
|
|
|
BOOLEAN LidPresent;
|
|
|
|
BOOLEAN SystemS1;
|
|
|
|
BOOLEAN SystemS2;
|
|
|
|
BOOLEAN SystemS3;
|
|
|
|
BOOLEAN SystemS4;
|
|
|
|
BOOLEAN SystemS5;
|
|
|
|
BOOLEAN HiberFilePresent;
|
|
|
|
BOOLEAN FullWake;
|
|
|
|
BOOLEAN VideoDimPresent;
|
|
|
|
BOOLEAN ApmPresent;
|
|
|
|
BOOLEAN UpsPresent;
|
|
|
|
BOOLEAN ThermalControl;
|
|
|
|
BOOLEAN ProcessorThrottle;
|
|
|
|
BYTE ProcessorMinThrottle;
|
|
|
|
#if (NTDDI_VERSION < NTDDI_WINXP)
|
|
|
|
BYTE ProcessorThrottleScale;
|
|
|
|
BYTE spare2[4];
|
|
|
|
#else
|
|
|
|
BYTE ProcessorMaxThrottle;
|
|
|
|
BOOLEAN FastSystemS4;
|
|
|
|
BYTE spare2[3];
|
|
|
|
#endif /* (NTDDI_VERSION < NTDDI_WINXP) */
|
|
|
|
BOOLEAN DiskSpinDown;
|
|
|
|
BYTE spare3[8];
|
|
|
|
BOOLEAN SystemBatteriesPresent;
|
|
|
|
BOOLEAN BatteriesAreShortTerm;
|
|
|
|
BATTERY_REPORTING_SCALE BatteryScale[3];
|
|
|
|
SYSTEM_POWER_STATE AcOnLineWake;
|
|
|
|
SYSTEM_POWER_STATE SoftLidWake;
|
|
|
|
SYSTEM_POWER_STATE RtcWake;
|
|
|
|
SYSTEM_POWER_STATE MinDeviceWakeState;
|
|
|
|
SYSTEM_POWER_STATE DefaultLowLatencyWake;
|
2005-05-08 17:44:37 +00:00
|
|
|
} SYSTEM_POWER_CAPABILITIES, *PSYSTEM_POWER_CAPABILITIES;
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_BATTERY_STATE {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
BOOLEAN AcOnLine;
|
|
|
|
BOOLEAN BatteryPresent;
|
|
|
|
BOOLEAN Charging;
|
|
|
|
BOOLEAN Discharging;
|
|
|
|
BOOLEAN Spare1[4];
|
|
|
|
DWORD MaxCapacity;
|
|
|
|
DWORD RemainingCapacity;
|
|
|
|
DWORD Rate;
|
|
|
|
DWORD EstimatedTime;
|
|
|
|
DWORD DefaultAlert1;
|
|
|
|
DWORD DefaultAlert2;
|
2005-05-08 17:44:37 +00:00
|
|
|
} SYSTEM_BATTERY_STATE, *PSYSTEM_BATTERY_STATE;
|
|
|
|
|
2007-04-21 19:37:11 +00:00
|
|
|
typedef struct _PROCESSOR_POWER_INFORMATION {
|
|
|
|
ULONG Number;
|
|
|
|
ULONG MaxMhz;
|
|
|
|
ULONG CurrentMhz;
|
|
|
|
ULONG MhzLimit;
|
|
|
|
ULONG MaxIdleState;
|
|
|
|
ULONG CurrentIdleState;
|
|
|
|
} PROCESSOR_POWER_INFORMATION, *PPROCESSOR_POWER_INFORMATION;
|
2007-07-28 21:33:23 +00:00
|
|
|
|
2007-07-30 16:02:00 +00:00
|
|
|
typedef DWORD EXECUTION_STATE;
|
2010-05-16 12:23:45 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef enum _POWER_INFORMATION_LEVEL {
|
2010-05-16 12:23:45 +00:00
|
|
|
SystemPowerPolicyAc,
|
|
|
|
SystemPowerPolicyDc,
|
|
|
|
VerifySystemPolicyAc,
|
|
|
|
VerifySystemPolicyDc,
|
|
|
|
SystemPowerCapabilities,
|
|
|
|
SystemBatteryState,
|
|
|
|
SystemPowerStateHandler,
|
|
|
|
ProcessorStateHandler,
|
|
|
|
SystemPowerPolicyCurrent,
|
|
|
|
AdministratorPowerPolicy,
|
|
|
|
SystemReserveHiberFile,
|
|
|
|
ProcessorInformation,
|
|
|
|
SystemPowerInformation,
|
|
|
|
ProcessorStateHandler2,
|
|
|
|
LastWakeTime,
|
|
|
|
LastSleepTime,
|
|
|
|
SystemExecutionState,
|
|
|
|
SystemPowerStateNotifyHandler,
|
|
|
|
ProcessorPowerPolicyAc,
|
|
|
|
ProcessorPowerPolicyDc,
|
|
|
|
VerifyProcessorPowerPolicyAc,
|
|
|
|
VerifyProcessorPowerPolicyDc,
|
|
|
|
ProcessorPowerPolicyCurrent,
|
|
|
|
SystemPowerStateLogging,
|
|
|
|
SystemPowerLoggingEntry,
|
|
|
|
SetPowerSettingValue,
|
|
|
|
NotifyUserPowerSetting,
|
|
|
|
PowerInformationLevelUnused0,
|
|
|
|
PowerInformationLevelUnused1,
|
|
|
|
SystemVideoState,
|
|
|
|
TraceApplicationPowerMessage,
|
|
|
|
TraceApplicationPowerMessageEnd,
|
|
|
|
ProcessorPerfStates,
|
|
|
|
ProcessorIdleStates,
|
|
|
|
ProcessorCap,
|
|
|
|
SystemWakeSource,
|
|
|
|
SystemHiberFileInformation,
|
|
|
|
TraceServicePowerMessage,
|
|
|
|
ProcessorLoad,
|
|
|
|
PowerShutdownNotification,
|
|
|
|
MonitorCapabilities,
|
|
|
|
SessionPowerInit,
|
|
|
|
SessionDisplayState,
|
|
|
|
PowerRequestCreate,
|
|
|
|
PowerRequestAction,
|
|
|
|
GetPowerRequestList,
|
|
|
|
ProcessorInformationEx,
|
|
|
|
NotifyUserModeLegacyPowerEvent,
|
|
|
|
GroupPark,
|
|
|
|
ProcessorIdleDomains,
|
|
|
|
WakeTimerList,
|
|
|
|
SystemHiberFileSize,
|
|
|
|
PowerInformationLevelMaximum
|
2005-05-08 17:44:37 +00:00
|
|
|
} POWER_INFORMATION_LEVEL;
|
|
|
|
|
|
|
|
#if 1 /* (WIN32_WINNT >= 0x0500) */
|
|
|
|
typedef struct _SYSTEM_POWER_INFORMATION {
|
|
|
|
ULONG MaxIdlenessAllowed;
|
|
|
|
ULONG Idleness;
|
|
|
|
ULONG TimeRemaining;
|
|
|
|
UCHAR CoolingMode;
|
|
|
|
} SYSTEM_POWER_INFORMATION,*PSYSTEM_POWER_INFORMATION;
|
|
|
|
#endif
|
|
|
|
|
2005-10-21 14:04:40 +00:00
|
|
|
#if (_WIN32_WINNT >= 0x0500)
|
2006-10-25 01:30:19 +00:00
|
|
|
#define _AUDIT_EVENT_TYPE_HACK 1
|
2005-10-21 14:04:40 +00:00
|
|
|
typedef enum _AUDIT_EVENT_TYPE {
|
2010-05-15 16:53:39 +00:00
|
|
|
AuditEventObjectAccess,
|
|
|
|
AuditEventDirectoryServiceAccess
|
2005-10-21 14:04:40 +00:00
|
|
|
} AUDIT_EVENT_TYPE, *PAUDIT_EVENT_TYPE;
|
|
|
|
#endif
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#if (_WIN32_WINNT >= 0x0501)
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef enum _ACTIVATION_CONTEXT_INFO_CLASS {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
ActivationContextBasicInformation = 1,
|
|
|
|
ActivationContextDetailedInformation = 2,
|
|
|
|
AssemblyDetailedInformationInActivationContext = 3,
|
|
|
|
FileInformationInAssemblyOfAssemblyInActivationContext = 4,
|
|
|
|
RunlevelInformationInActivationContext = 5,
|
|
|
|
CompatibilityInformationInActivationContext = 6,
|
|
|
|
ActivationContextManifestResourceName = 7,
|
|
|
|
MaxActivationContextInfoClass,
|
|
|
|
/* For compatibility with the old names */
|
|
|
|
AssemblyDetailedInformationInActivationContxt = 3,
|
|
|
|
FileInformationInAssemblyOfAssemblyInActivationContxt = 4
|
2005-05-08 17:44:37 +00:00
|
|
|
} ACTIVATION_CONTEXT_INFO_CLASS;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD ulFlags;
|
|
|
|
DWORD ulEncodedAssemblyIdentityLength;
|
|
|
|
DWORD ulManifestPathType;
|
|
|
|
DWORD ulManifestPathLength;
|
|
|
|
LARGE_INTEGER liManifestLastWriteTime;
|
|
|
|
DWORD ulPolicyPathType;
|
|
|
|
DWORD ulPolicyPathLength;
|
|
|
|
LARGE_INTEGER liPolicyLastWriteTime;
|
|
|
|
DWORD ulMetadataSatelliteRosterIndex;
|
|
|
|
DWORD ulManifestVersionMajor;
|
|
|
|
DWORD ulManifestVersionMinor;
|
|
|
|
DWORD ulPolicyVersionMajor;
|
|
|
|
DWORD ulPolicyVersionMinor;
|
|
|
|
DWORD ulAssemblyDirectoryNameLength;
|
|
|
|
PCWSTR lpAssemblyEncodedAssemblyIdentity;
|
|
|
|
PCWSTR lpAssemblyManifestPath;
|
|
|
|
PCWSTR lpAssemblyPolicyPath;
|
|
|
|
PCWSTR lpAssemblyDirectoryName;
|
|
|
|
} ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION, *PACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION;
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef const ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION *PCACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ACTIVATION_CONTEXT_DETAILED_INFORMATION {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD dwFlags;
|
|
|
|
DWORD ulFormatVersion;
|
|
|
|
DWORD ulAssemblyCount;
|
|
|
|
DWORD ulRootManifestPathType;
|
|
|
|
DWORD ulRootManifestPathChars;
|
|
|
|
DWORD ulRootConfigurationPathType;
|
|
|
|
DWORD ulRootConfigurationPathChars;
|
|
|
|
DWORD ulAppDirPathType;
|
|
|
|
DWORD ulAppDirPathChars;
|
|
|
|
PCWSTR lpRootManifestPath;
|
|
|
|
PCWSTR lpRootConfigurationPath;
|
|
|
|
PCWSTR lpAppDirPath;
|
|
|
|
} ACTIVATION_CONTEXT_DETAILED_INFORMATION, *PACTIVATION_CONTEXT_DETAILED_INFORMATION;
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef const ACTIVATION_CONTEXT_DETAILED_INFORMATION *PCACTIVATION_CONTEXT_DETAILED_INFORMATION;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ACTIVATION_CONTEXT_QUERY_INDEX {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD ulAssemblyIndex;
|
|
|
|
DWORD ulFileIndexInAssembly;
|
2005-05-08 17:44:37 +00:00
|
|
|
} ACTIVATION_CONTEXT_QUERY_INDEX,*PACTIVATION_CONTEXT_QUERY_INDEX;
|
|
|
|
typedef const ACTIVATION_CONTEXT_QUERY_INDEX *PCACTIVATION_CONTEXT_QUERY_INDEX;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ASSEMBLY_FILE_DETAILED_INFORMATION {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD ulFlags;
|
|
|
|
DWORD ulFilenameLength;
|
|
|
|
DWORD ulPathLength;
|
|
|
|
PCWSTR lpFileName;
|
|
|
|
PCWSTR lpFilePath;
|
2005-05-08 17:44:37 +00:00
|
|
|
} ASSEMBLY_FILE_DETAILED_INFORMATION,*PASSEMBLY_FILE_DETAILED_INFORMATION;
|
|
|
|
typedef const ASSEMBLY_FILE_DETAILED_INFORMATION *PCASSEMBLY_FILE_DETAILED_INFORMATION;
|
2008-05-09 17:37:21 +00:00
|
|
|
|
|
|
|
#define ACTIVATION_CONTEXT_PATH_TYPE_NONE 1
|
|
|
|
#define ACTIVATION_CONTEXT_PATH_TYPE_WIN32_FILE 2
|
|
|
|
#define ACTIVATION_CONTEXT_PATH_TYPE_URL 3
|
|
|
|
#define ACTIVATION_CONTEXT_PATH_TYPE_ASSEMBLYREF 4
|
|
|
|
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION 1
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION 2
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION 3
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION 4
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION 5
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION 6
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION 7
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_GLOBAL_OBJECT_RENAME_TABLE 8
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES 9
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#endif /* (WIN32_WINNT >= 0x0501) */
|
|
|
|
|
|
|
|
typedef struct _PROCESSOR_POWER_POLICY_INFO {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD TimeCheck;
|
|
|
|
DWORD DemoteLimit;
|
|
|
|
DWORD PromoteLimit;
|
|
|
|
BYTE DemotePercent;
|
|
|
|
BYTE PromotePercent;
|
|
|
|
BYTE Spare[2];
|
|
|
|
DWORD AllowDemotion:1;
|
|
|
|
DWORD AllowPromotion:1;
|
|
|
|
DWORD Reserved:30;
|
2005-05-08 17:44:37 +00:00
|
|
|
} PROCESSOR_POWER_POLICY_INFO, *PPROCESSOR_POWER_POLICY_INFO;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _PROCESSOR_POWER_POLICY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
DWORD Revision;
|
|
|
|
BYTE DynamicThrottle;
|
|
|
|
BYTE Spare[3];
|
|
|
|
DWORD DisableCStates:1;
|
|
|
|
DWORD Reserved:31;
|
|
|
|
DWORD PolicyCount;
|
|
|
|
PROCESSOR_POWER_POLICY_INFO Policy[3];
|
2005-05-08 17:44:37 +00:00
|
|
|
} PROCESSOR_POWER_POLICY, *PPROCESSOR_POWER_POLICY;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef struct _ADMINISTRATOR_POWER_POLICY {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
SYSTEM_POWER_STATE MinSleep;
|
|
|
|
SYSTEM_POWER_STATE MaxSleep;
|
|
|
|
DWORD MinVideoTimeout;
|
|
|
|
DWORD MaxVideoTimeout;
|
|
|
|
DWORD MinSpindownTimeout;
|
|
|
|
DWORD MaxSpindownTimeout;
|
2005-05-08 17:44:37 +00:00
|
|
|
} ADMINISTRATOR_POWER_POLICY, *PADMINISTRATOR_POWER_POLICY;
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#endif /* WINVER >= 0x0500 */
|
|
|
|
|
|
|
|
typedef VOID (NTAPI *WAITORTIMERCALLBACKFUNC)(PVOID,BOOLEAN);
|
|
|
|
|
|
|
|
#ifdef UNICODE
|
|
|
|
typedef OSVERSIONINFOW OSVERSIONINFO,*POSVERSIONINFO,*LPOSVERSIONINFO;
|
|
|
|
typedef OSVERSIONINFOEXW OSVERSIONINFOEX,*POSVERSIONINFOEX,*LPOSVERSIONINFOEX;
|
|
|
|
#else
|
|
|
|
typedef OSVERSIONINFOA OSVERSIONINFO,*POSVERSIONINFO,*LPOSVERSIONINFO;
|
|
|
|
typedef OSVERSIONINFOEXA OSVERSIONINFOEX,*POSVERSIONINFOEX,*LPOSVERSIONINFOEX;
|
|
|
|
#endif
|
|
|
|
|
2009-12-10 09:28:48 +00:00
|
|
|
#define VER_SET_CONDITION(lc,t,c) ((lc) = VerSetConditionMask((lc),(t),(c)))
|
|
|
|
|
2009-06-17 11:18:51 +00:00
|
|
|
#if (_WIN32_WINNT >= 0x0500)
|
2005-05-08 17:44:37 +00:00
|
|
|
ULONGLONG WINAPI VerSetConditionMask(ULONGLONG,DWORD,BYTE);
|
|
|
|
#endif
|
|
|
|
|
2008-09-10 15:30:27 +00:00
|
|
|
typedef enum _HEAP_INFORMATION_CLASS {
|
[PSDK]
- winnt.h : ULONG -> DWORD and UCHAR-> BYTE in several structures, update SLIST_HEADER and co, add proper packing of RTL_CRITICAL_SECTION, update IMAGE_AUX_SYMBOL, ReplacesCorHdrNumericDefines, IMAGE_COR20_HEADER, IMAGE_RESOURCE_DIRECTORY_ENTRY, IMAGE_RUNTIME_FUNCTION_ENTRY, SYSTEM_POWER_CAPABILITIES, ACTIVATION_CONTEXT_INFO_CLASS and HEAP_INFORMATION_CLASS, replace IMAGE_LOAD_CONFIG_DIRECTORY with IMAGE_LOAD_CONFIG_DIRECTORY{32,64} with the appropriate conditional and apply consistent formatting for the rest.
svn path=/branches/header-work/; revision=47245
2010-05-16 22:15:24 +00:00
|
|
|
HeapCompatibilityInformation,
|
|
|
|
HeapEnableTerminationOnCorruption
|
2008-09-10 15:30:27 +00:00
|
|
|
} HEAP_INFORMATION_CLASS;
|
|
|
|
|
2008-08-30 20:29:57 +00:00
|
|
|
typedef enum _PROCESSOR_CACHE_TYPE {
|
2010-05-16 12:23:45 +00:00
|
|
|
CacheUnified,
|
|
|
|
CacheInstruction,
|
|
|
|
CacheData,
|
|
|
|
CacheTrace
|
2008-08-30 20:29:57 +00:00
|
|
|
} PROCESSOR_CACHE_TYPE;
|
|
|
|
|
|
|
|
typedef enum _LOGICAL_PROCESSOR_RELATIONSHIP {
|
2010-05-16 12:23:45 +00:00
|
|
|
RelationProcessorCore,
|
|
|
|
RelationNumaNode,
|
|
|
|
RelationCache,
|
|
|
|
RelationProcessorPackage,
|
|
|
|
RelationGroup,
|
|
|
|
RelationAll = 0xffff
|
2008-08-30 20:29:57 +00:00
|
|
|
} LOGICAL_PROCESSOR_RELATIONSHIP;
|
|
|
|
|
|
|
|
#define CACHE_FULLY_ASSOCIATIVE 0xFF
|
|
|
|
|
|
|
|
typedef struct _CACHE_DESCRIPTOR {
|
2010-05-16 12:23:45 +00:00
|
|
|
BYTE Level;
|
|
|
|
BYTE Associativity;
|
|
|
|
WORD LineSize;
|
|
|
|
DWORD Size;
|
|
|
|
PROCESSOR_CACHE_TYPE Type;
|
2008-08-30 20:29:57 +00:00
|
|
|
} CACHE_DESCRIPTOR, *PCACHE_DESCRIPTOR;
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_LOGICAL_PROCESSOR_INFORMATION {
|
2010-05-16 12:23:45 +00:00
|
|
|
ULONG_PTR ProcessorMask;
|
|
|
|
LOGICAL_PROCESSOR_RELATIONSHIP Relationship;
|
|
|
|
_ANONYMOUS_UNION union {
|
|
|
|
struct {
|
|
|
|
BYTE Flags;
|
|
|
|
} ProcessorCore;
|
|
|
|
struct {
|
|
|
|
DWORD NodeNumber;
|
|
|
|
} NumaNode;
|
|
|
|
CACHE_DESCRIPTOR Cache;
|
|
|
|
ULONGLONG Reserved[2];
|
|
|
|
} DUMMYUNIONNAME;
|
2008-08-30 20:29:57 +00:00
|
|
|
} SYSTEM_LOGICAL_PROCESSOR_INFORMATION, *PSYSTEM_LOGICAL_PROCESSOR_INFORMATION;
|
|
|
|
|
2007-08-19 19:37:47 +00:00
|
|
|
NTSYSAPI
|
2005-07-26 14:00:45 +00:00
|
|
|
SIZE_T
|
2008-11-30 13:46:35 +00:00
|
|
|
NTAPI
|
2005-07-26 14:00:45 +00:00
|
|
|
RtlCompareMemory (
|
|
|
|
const VOID *Source1,
|
|
|
|
const VOID *Source2,
|
|
|
|
SIZE_T Length
|
|
|
|
);
|
|
|
|
|
2005-08-07 01:23:40 +00:00
|
|
|
#define RtlMoveMemory memmove
|
|
|
|
#define RtlCopyMemory memcpy
|
|
|
|
#define RtlFillMemory(d,l,f) memset((d), (f), (l))
|
|
|
|
#define RtlZeroMemory(d,l) RtlFillMemory((d),(l),0)
|
|
|
|
|
2008-08-30 22:54:27 +00:00
|
|
|
FORCEINLINE
|
|
|
|
PVOID
|
2009-06-08 13:42:02 +00:00
|
|
|
RtlSecureZeroMemory(IN PVOID Buffer,
|
|
|
|
IN SIZE_T Length)
|
2008-08-30 22:54:27 +00:00
|
|
|
{
|
2009-06-08 13:42:02 +00:00
|
|
|
volatile char *VolatilePointer;
|
2008-08-30 22:54:27 +00:00
|
|
|
|
2009-06-08 13:42:02 +00:00
|
|
|
/* Get a volatile pointer to prevent any compiler optimizations */
|
|
|
|
VolatilePointer = (volatile char *)Buffer;
|
|
|
|
|
|
|
|
/* Loop the whole buffer */
|
|
|
|
while (Length)
|
2008-08-30 22:54:27 +00:00
|
|
|
{
|
2009-06-08 13:42:02 +00:00
|
|
|
/* Zero the current byte and move on */
|
|
|
|
*VolatilePointer++ = 0;
|
|
|
|
Length--;
|
2008-08-30 22:54:27 +00:00
|
|
|
}
|
|
|
|
|
2009-06-08 13:42:02 +00:00
|
|
|
/* Return the pointer to ensure the compiler won't optimize this away */
|
|
|
|
return Buffer;
|
2008-08-30 22:54:27 +00:00
|
|
|
}
|
|
|
|
|
2005-08-15 02:24:48 +00:00
|
|
|
typedef struct _OBJECT_TYPE_LIST {
|
2010-05-15 16:53:39 +00:00
|
|
|
WORD Level;
|
|
|
|
WORD Sbz;
|
|
|
|
GUID *ObjectType;
|
2005-08-15 02:24:48 +00:00
|
|
|
} OBJECT_TYPE_LIST, *POBJECT_TYPE_LIST;
|
|
|
|
|
2007-09-03 08:50:06 +00:00
|
|
|
#if defined(_M_IX86)
|
2011-01-22 19:17:10 +00:00
|
|
|
FORCEINLINE PVOID GetCurrentFiber(VOID)
|
2005-05-08 17:44:37 +00:00
|
|
|
{
|
2011-01-22 19:17:10 +00:00
|
|
|
return (PVOID)(ULONG_PTR)__readfsdword(0x10);
|
2005-05-08 17:44:37 +00:00
|
|
|
}
|
2011-01-22 19:17:10 +00:00
|
|
|
|
Merge 34703, 34704, 34705, 34706, 34707, 34708, 34709 and 34710 from ros-amd64-bringup branch:
- Fix inline versions of integer <-> pointer conversion functions.
- Implement _InterlockedAnd64, _InterlockedOr64, _interlockedbittestandreset64, _interlockedbittestandset64 and gs-segment-adressing functions
- As amd64 shares most of the intrinsics of x86, implement them in intrin_x86.h
- Fix IMAGE_FIRST_SECTION macro
- Implement GetCurrentFiber(), NtCurrentTeb() and YieldProcessor()
- Fix ENUMRESLANGPROC, ENUMRESNAMEPROC and ENUMRESTYPEPROC
- Add Interlocked functions for pointers
- Add InterlockedCompareExchangePointer and InterlockedExchangePointer
- Add intrinsic port and register access functions
fix LIST_ENTRY() macro for 64 bits
add size_t definition to _mingw.h (ported from mingw)
- Update some loader structs ULONG -> ULONG_PTR / SIZE_T
svn path=/trunk/; revision=35636
2008-08-25 18:47:44 +00:00
|
|
|
#elif defined (_M_AMD64)
|
|
|
|
FORCEINLINE PVOID GetCurrentFiber(VOID)
|
|
|
|
{
|
merge from amd64 branch. and
35645: Fix some wrong declarations for 64bits. (Samuel Serapión)
35652: More header fixes. (Samuel Serapión)
35950: Implement __readeflags and __writeeflags (Timo Kreuzer)
35951: Remove hacks from __addgsbyte, __addgsword, __addgsdword. (Timo Kreuzer)
36171: Fix TIMERPROC definition. Fix CreateToolbarEx definition. (Samuel Serapión)
36468: Add MemoryBarrier definition for amd64 (Timo Kreuzer)
36469: Fix NetLocalGroupGetMembers prototype. (Samuel Serapión)
36474: Fix ReadProcessMemory and Toolhelp32ReadProcessMemory prototypes. (Samuel Serapión)
36840: fix __rdtsc on amd64 build (Timo Kreuzer)
36898: Fix CryptReleaseContext definition. (Samuel Serapión)
36900: Fix COMBOBOXEXITEA/W noticed by Daniel Verkamp. (Samuel Serapión)
36901: Fix NMHDR definition. noticed by Daniel Verkamp. (Samuel Serapión)
36906: Fix definitions of CDHOOKPROC, PROC, FARPROC, NEARPROC, SYSTEM_INFO, COMPAREITEMSTRUCT, COPYDATASTRUCT, DELETEITEMSTRUCT, DRAWITEMSTRUCT, MENUITEMINFOA/W, HELPINFO, MSGBOXPARAMSA/W, MOUSEHOOKSTRUCT, DROPSTRUCT, KBDLLHOOKSTRUCT, GetProcessAffinityMask, SetProcessAffinityMask, DragObject, InsertMenuA/W, ModifyMenuA/W, WinHelpA/W, RT_GROUP_CURSOR, RT_GROUP_ICON (Daniel Verkamp.)
36953: Fix AFD compilation for 64-bit (treat handles as ULONG_PTR-sized). Also correct Winsock's SOCKET definition (Stefan Ginsberg)
37307: Add UNWIND_HISTORY_TABLE_ENTRY and UNWIND_HISTORY_TABLE. (Timo Kreuzer)
37875: Inlcude excpt.h in winnt.h. (Timo Kreuzer)
37908: Fix definition of SOCKET. (Timo Kreuzer)
37926: fix *HOOKPROC definition. Add 64 bit BitTest functions. (Timo Kreuzer)
38072: Fix FARPROC, NEARPROC, PROC definitions (Samuel Serapión)
38091: Fix some 64bit portability issues. (Samuel Serapión)
38093: Hack for wine specific hack. (Samuel Serapión)
38095: Fix packing for commdlg. (Samuel Serapión)
38260: Fix EDITSTREAM structure. (Samuel Serapión)
38263: Fix definitions of WAVEOPENDESC, WAVEHDR structures. Fix prototypes for DefDriverProc, waveOutMessage, waveOutGetDevCapsA/W, waveInGetDevCapsA/W, waveInMessage, midiStreamOpen, midiOutGetDevCapsA/W, midiOutOpen, midiOutMessage, midiInGetDevCapsA/W, midiInOpen, midiInMessage, auxGetDevCapsA/W, auxOutMessage, mixerGetDevCapsA/W, mixerOpen, timeSetEvent, joyGetDevCapsA/W, mciSendCommandA/W, and mciGetCreatorTask. (Samuel Serapión)
38478: Fix HeapAlloc prototype. (Timo Kreuzer)
39468: Fix some definitions in mmsystem.h (Timo Kreuzer)
svn path=/trunk/; revision=39471
2009-02-08 03:41:29 +00:00
|
|
|
#ifdef NONAMELESSUNION
|
|
|
|
return (PVOID)__readgsqword(FIELD_OFFSET(NT_TIB, DUMMYUNIONNAME.FiberData));
|
|
|
|
#else
|
Merge 34703, 34704, 34705, 34706, 34707, 34708, 34709 and 34710 from ros-amd64-bringup branch:
- Fix inline versions of integer <-> pointer conversion functions.
- Implement _InterlockedAnd64, _InterlockedOr64, _interlockedbittestandreset64, _interlockedbittestandset64 and gs-segment-adressing functions
- As amd64 shares most of the intrinsics of x86, implement them in intrin_x86.h
- Fix IMAGE_FIRST_SECTION macro
- Implement GetCurrentFiber(), NtCurrentTeb() and YieldProcessor()
- Fix ENUMRESLANGPROC, ENUMRESNAMEPROC and ENUMRESTYPEPROC
- Add Interlocked functions for pointers
- Add InterlockedCompareExchangePointer and InterlockedExchangePointer
- Add intrinsic port and register access functions
fix LIST_ENTRY() macro for 64 bits
add size_t definition to _mingw.h (ported from mingw)
- Update some loader structs ULONG -> ULONG_PTR / SIZE_T
svn path=/trunk/; revision=35636
2008-08-25 18:47:44 +00:00
|
|
|
return (PVOID)__readgsqword(FIELD_OFFSET(NT_TIB, FiberData));
|
merge from amd64 branch. and
35645: Fix some wrong declarations for 64bits. (Samuel Serapión)
35652: More header fixes. (Samuel Serapión)
35950: Implement __readeflags and __writeeflags (Timo Kreuzer)
35951: Remove hacks from __addgsbyte, __addgsword, __addgsdword. (Timo Kreuzer)
36171: Fix TIMERPROC definition. Fix CreateToolbarEx definition. (Samuel Serapión)
36468: Add MemoryBarrier definition for amd64 (Timo Kreuzer)
36469: Fix NetLocalGroupGetMembers prototype. (Samuel Serapión)
36474: Fix ReadProcessMemory and Toolhelp32ReadProcessMemory prototypes. (Samuel Serapión)
36840: fix __rdtsc on amd64 build (Timo Kreuzer)
36898: Fix CryptReleaseContext definition. (Samuel Serapión)
36900: Fix COMBOBOXEXITEA/W noticed by Daniel Verkamp. (Samuel Serapión)
36901: Fix NMHDR definition. noticed by Daniel Verkamp. (Samuel Serapión)
36906: Fix definitions of CDHOOKPROC, PROC, FARPROC, NEARPROC, SYSTEM_INFO, COMPAREITEMSTRUCT, COPYDATASTRUCT, DELETEITEMSTRUCT, DRAWITEMSTRUCT, MENUITEMINFOA/W, HELPINFO, MSGBOXPARAMSA/W, MOUSEHOOKSTRUCT, DROPSTRUCT, KBDLLHOOKSTRUCT, GetProcessAffinityMask, SetProcessAffinityMask, DragObject, InsertMenuA/W, ModifyMenuA/W, WinHelpA/W, RT_GROUP_CURSOR, RT_GROUP_ICON (Daniel Verkamp.)
36953: Fix AFD compilation for 64-bit (treat handles as ULONG_PTR-sized). Also correct Winsock's SOCKET definition (Stefan Ginsberg)
37307: Add UNWIND_HISTORY_TABLE_ENTRY and UNWIND_HISTORY_TABLE. (Timo Kreuzer)
37875: Inlcude excpt.h in winnt.h. (Timo Kreuzer)
37908: Fix definition of SOCKET. (Timo Kreuzer)
37926: fix *HOOKPROC definition. Add 64 bit BitTest functions. (Timo Kreuzer)
38072: Fix FARPROC, NEARPROC, PROC definitions (Samuel Serapión)
38091: Fix some 64bit portability issues. (Samuel Serapión)
38093: Hack for wine specific hack. (Samuel Serapión)
38095: Fix packing for commdlg. (Samuel Serapión)
38260: Fix EDITSTREAM structure. (Samuel Serapión)
38263: Fix definitions of WAVEOPENDESC, WAVEHDR structures. Fix prototypes for DefDriverProc, waveOutMessage, waveOutGetDevCapsA/W, waveInGetDevCapsA/W, waveInMessage, midiStreamOpen, midiOutGetDevCapsA/W, midiOutOpen, midiOutMessage, midiInGetDevCapsA/W, midiInOpen, midiInMessage, auxGetDevCapsA/W, auxOutMessage, mixerGetDevCapsA/W, mixerOpen, timeSetEvent, joyGetDevCapsA/W, mciSendCommandA/W, and mciGetCreatorTask. (Samuel Serapión)
38478: Fix HeapAlloc prototype. (Timo Kreuzer)
39468: Fix some definitions in mmsystem.h (Timo Kreuzer)
svn path=/trunk/; revision=39471
2009-02-08 03:41:29 +00:00
|
|
|
#endif
|
Merge 34703, 34704, 34705, 34706, 34707, 34708, 34709 and 34710 from ros-amd64-bringup branch:
- Fix inline versions of integer <-> pointer conversion functions.
- Implement _InterlockedAnd64, _InterlockedOr64, _interlockedbittestandreset64, _interlockedbittestandset64 and gs-segment-adressing functions
- As amd64 shares most of the intrinsics of x86, implement them in intrin_x86.h
- Fix IMAGE_FIRST_SECTION macro
- Implement GetCurrentFiber(), NtCurrentTeb() and YieldProcessor()
- Fix ENUMRESLANGPROC, ENUMRESNAMEPROC and ENUMRESTYPEPROC
- Add Interlocked functions for pointers
- Add InterlockedCompareExchangePointer and InterlockedExchangePointer
- Add intrinsic port and register access functions
fix LIST_ENTRY() macro for 64 bits
add size_t definition to _mingw.h (ported from mingw)
- Update some loader structs ULONG -> ULONG_PTR / SIZE_T
svn path=/trunk/; revision=35636
2008-08-25 18:47:44 +00:00
|
|
|
}
|
2011-01-22 19:17:10 +00:00
|
|
|
|
2008-02-05 02:58:28 +00:00
|
|
|
#elif defined (_M_ARM)
|
|
|
|
PVOID WINAPI GetCurrentFiber(VOID);
|
2011-01-22 19:17:10 +00:00
|
|
|
|
|
|
|
#elif defined(_M_PPC)
|
2007-09-03 01:57:36 +00:00
|
|
|
static __inline__ __attribute__((always_inline)) unsigned long __readfsdword_winnt(const unsigned long Offset)
|
|
|
|
{
|
|
|
|
unsigned long result;
|
|
|
|
__asm__("\tadd 7,13,%1\n"
|
2007-09-03 08:50:06 +00:00
|
|
|
"\tlwz %0,0(7)\n"
|
|
|
|
: "=r" (result)
|
|
|
|
: "r" (Offset)
|
|
|
|
: "r7");
|
2007-09-03 01:57:36 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline__ PVOID GetCurrentFiber(void)
|
|
|
|
{
|
|
|
|
return __readfsdword_winnt(0x10);
|
|
|
|
}
|
2005-11-22 00:47:58 +00:00
|
|
|
#else
|
2011-01-22 19:17:10 +00:00
|
|
|
#error Unknown architecture
|
|
|
|
#endif
|
2005-11-22 00:47:58 +00:00
|
|
|
|
|
|
|
|
2005-06-21 23:42:58 +00:00
|
|
|
|
[CACHE]
The cache manager rewrite I started years ago has finally appeared in
ReactOS' trunk and although at this point it's not quite perfectly
integrated, it's enough to boot up the bootcd or livecd. To check out
the more mature original, check out arty-newcc-reactos, branch
arty-newcc on bitbucket.org . Amine Khaldi encouraged me quite a bit
to not give up on it, and was able to reach out and be an advocate
when i really wasn't able to. Others agree that the time has come to
begin removing the old cache manager. I expect the remaining problems
in the version going to trunk will be taken care of relatively
quickly.
The motivation for this effort lies in the particularly hairy
relationship between ReactOS' cache manager and data sections. This
code completely removes page sharing between cache manager and section
and reimagines cache manager as being a facility layered on the memory
manager, not really caring about individual pages, but simply managing
data section objects where caching might occur.
It took me about 2 years to do the first pass of this rewrite and most
of this year to fix some lingering issues, properly implement demand
paging in ReactOS (code which didn't come with this patch in a
recognizable form), and finish getting the PrivateCacheMap and
SharedCacheMap relationship correct.
Currently, the new ntoskrnl/cache directory contains an own
implementation of data file sections. After things have settled down,
we can begin to deprecate and remove the parts of ReactOS' section
implementation that depend on a close relationship with cache
manager. Eventually, I think that the extra code added to
ntoskrnl/cache/section will be removed and ReactOS' own sections will
replace the use of the special MM_CACHE_SECTION_SEGMENT in the cache
path.
Note also, that this makes all cache manager (and new section parts)
use wide file offsets. If my section code were to take over other
parts of the ReactOS memory manager, they would also benefit from
these improvements.
I invite anyone who wants to to peek at this code and fix whatever
bugs can be found.
svn path=/trunk/; revision=49423
2010-11-02 02:32:39 +00:00
|
|
|
#include "inline_ntcurrentteb.h"
|
|
|
|
|
2005-06-21 23:42:58 +00:00
|
|
|
static __inline PVOID GetFiberData(void)
|
|
|
|
{
|
|
|
|
return *((PVOID *)GetCurrentFiber());
|
|
|
|
}
|
2005-05-08 17:44:37 +00:00
|
|
|
|
2005-12-29 19:12:09 +00:00
|
|
|
#if defined(__GNUC__)
|
|
|
|
|
|
|
|
static __inline__ BOOLEAN
|
2006-07-13 04:20:18 +00:00
|
|
|
InterlockedBitTestAndSet(IN LONG volatile *Base,
|
2005-12-29 19:12:09 +00:00
|
|
|
IN LONG Bit)
|
|
|
|
{
|
2007-09-03 08:50:06 +00:00
|
|
|
#if defined(_M_IX86)
|
2005-12-29 19:12:09 +00:00
|
|
|
LONG OldBit;
|
2005-12-29 19:54:42 +00:00
|
|
|
__asm__ __volatile__("lock "
|
2005-12-29 19:12:09 +00:00
|
|
|
"btsl %2,%1\n\t"
|
|
|
|
"sbbl %0,%0\n\t"
|
2008-10-26 10:47:07 +00:00
|
|
|
:"=r" (OldBit),"+m" (*Base)
|
2007-09-03 08:50:06 +00:00
|
|
|
:"Ir" (Bit)
|
|
|
|
: "memory");
|
2005-12-29 19:12:09 +00:00
|
|
|
return OldBit;
|
2007-09-03 08:50:06 +00:00
|
|
|
#else
|
|
|
|
return (_InterlockedOr(Base, 1 << Bit) >> Bit) & 1;
|
|
|
|
#endif
|
2005-12-29 19:12:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline__ BOOLEAN
|
2006-07-13 04:20:18 +00:00
|
|
|
InterlockedBitTestAndReset(IN LONG volatile *Base,
|
2007-09-03 08:50:06 +00:00
|
|
|
IN LONG Bit)
|
2005-12-29 19:12:09 +00:00
|
|
|
{
|
2007-09-03 08:50:06 +00:00
|
|
|
#if defined(_M_IX86)
|
2005-12-29 19:12:09 +00:00
|
|
|
LONG OldBit;
|
2005-12-29 19:54:42 +00:00
|
|
|
__asm__ __volatile__("lock "
|
2005-12-29 19:12:09 +00:00
|
|
|
"btrl %2,%1\n\t"
|
|
|
|
"sbbl %0,%0\n\t"
|
2008-10-26 10:47:07 +00:00
|
|
|
:"=r" (OldBit),"+m" (*Base)
|
2007-09-03 08:50:06 +00:00
|
|
|
:"Ir" (Bit)
|
|
|
|
: "memory");
|
2005-12-29 19:12:09 +00:00
|
|
|
return OldBit;
|
2007-09-03 08:50:06 +00:00
|
|
|
#else
|
|
|
|
return (_InterlockedAnd(Base, ~(1 << Bit)) >> Bit) & 1;
|
|
|
|
#endif
|
2005-12-29 19:12:09 +00:00
|
|
|
}
|
|
|
|
|
2010-11-13 23:57:49 +00:00
|
|
|
#endif
|
|
|
|
|
2008-12-06 18:31:33 +00:00
|
|
|
#define BitScanForward _BitScanForward
|
|
|
|
#define BitScanReverse _BitScanReverse
|
2006-07-17 01:40:10 +00:00
|
|
|
|
2008-08-30 22:54:27 +00:00
|
|
|
/* TODO: Other architectures than X86 */
|
|
|
|
#if defined(_M_IX86)
|
2009-01-18 06:25:43 +00:00
|
|
|
#define PF_TEMPORAL_LEVEL_1
|
2008-08-30 22:54:27 +00:00
|
|
|
#define PF_NON_TEMPORAL_LEVEL_ALL
|
|
|
|
#define PreFetchCacheLine(l, a)
|
|
|
|
#elif defined (_M_AMD64)
|
|
|
|
#define PreFetchCacheLine(l, a)
|
|
|
|
#elif defined(_M_PPC)
|
|
|
|
#define PreFetchCacheLine(l, a)
|
|
|
|
#elif defined(_M_ARM)
|
|
|
|
#define PreFetchCacheLine(l, a)
|
|
|
|
#else
|
|
|
|
#error Unknown architecture
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* TODO: Other architectures than X86 */
|
|
|
|
#if defined(_M_IX86)
|
2008-09-12 08:07:52 +00:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
FORCEINLINE
|
|
|
|
VOID
|
|
|
|
MemoryBarrier (VOID)
|
|
|
|
{
|
|
|
|
LONG Barrier;
|
|
|
|
__asm { xchg Barrier, eax }
|
|
|
|
}
|
|
|
|
#else
|
2008-08-30 22:54:27 +00:00
|
|
|
FORCEINLINE
|
|
|
|
VOID
|
|
|
|
MemoryBarrier(VOID)
|
|
|
|
{
|
|
|
|
LONG Barrier;
|
2008-08-30 23:06:13 +00:00
|
|
|
__asm__ __volatile__("xchgl %%eax, %[Barrier]" : : [Barrier] "m" (Barrier) : "memory");
|
2008-08-30 22:54:27 +00:00
|
|
|
}
|
2008-09-12 08:07:52 +00:00
|
|
|
#endif
|
2008-08-30 22:54:27 +00:00
|
|
|
#elif defined (_M_AMD64)
|
merge from amd64 branch. and
35645: Fix some wrong declarations for 64bits. (Samuel Serapión)
35652: More header fixes. (Samuel Serapión)
35950: Implement __readeflags and __writeeflags (Timo Kreuzer)
35951: Remove hacks from __addgsbyte, __addgsword, __addgsdword. (Timo Kreuzer)
36171: Fix TIMERPROC definition. Fix CreateToolbarEx definition. (Samuel Serapión)
36468: Add MemoryBarrier definition for amd64 (Timo Kreuzer)
36469: Fix NetLocalGroupGetMembers prototype. (Samuel Serapión)
36474: Fix ReadProcessMemory and Toolhelp32ReadProcessMemory prototypes. (Samuel Serapión)
36840: fix __rdtsc on amd64 build (Timo Kreuzer)
36898: Fix CryptReleaseContext definition. (Samuel Serapión)
36900: Fix COMBOBOXEXITEA/W noticed by Daniel Verkamp. (Samuel Serapión)
36901: Fix NMHDR definition. noticed by Daniel Verkamp. (Samuel Serapión)
36906: Fix definitions of CDHOOKPROC, PROC, FARPROC, NEARPROC, SYSTEM_INFO, COMPAREITEMSTRUCT, COPYDATASTRUCT, DELETEITEMSTRUCT, DRAWITEMSTRUCT, MENUITEMINFOA/W, HELPINFO, MSGBOXPARAMSA/W, MOUSEHOOKSTRUCT, DROPSTRUCT, KBDLLHOOKSTRUCT, GetProcessAffinityMask, SetProcessAffinityMask, DragObject, InsertMenuA/W, ModifyMenuA/W, WinHelpA/W, RT_GROUP_CURSOR, RT_GROUP_ICON (Daniel Verkamp.)
36953: Fix AFD compilation for 64-bit (treat handles as ULONG_PTR-sized). Also correct Winsock's SOCKET definition (Stefan Ginsberg)
37307: Add UNWIND_HISTORY_TABLE_ENTRY and UNWIND_HISTORY_TABLE. (Timo Kreuzer)
37875: Inlcude excpt.h in winnt.h. (Timo Kreuzer)
37908: Fix definition of SOCKET. (Timo Kreuzer)
37926: fix *HOOKPROC definition. Add 64 bit BitTest functions. (Timo Kreuzer)
38072: Fix FARPROC, NEARPROC, PROC definitions (Samuel Serapión)
38091: Fix some 64bit portability issues. (Samuel Serapión)
38093: Hack for wine specific hack. (Samuel Serapión)
38095: Fix packing for commdlg. (Samuel Serapión)
38260: Fix EDITSTREAM structure. (Samuel Serapión)
38263: Fix definitions of WAVEOPENDESC, WAVEHDR structures. Fix prototypes for DefDriverProc, waveOutMessage, waveOutGetDevCapsA/W, waveInGetDevCapsA/W, waveInMessage, midiStreamOpen, midiOutGetDevCapsA/W, midiOutOpen, midiOutMessage, midiInGetDevCapsA/W, midiInOpen, midiInMessage, auxGetDevCapsA/W, auxOutMessage, mixerGetDevCapsA/W, mixerOpen, timeSetEvent, joyGetDevCapsA/W, mciSendCommandA/W, and mciGetCreatorTask. (Samuel Serapión)
38478: Fix HeapAlloc prototype. (Timo Kreuzer)
39468: Fix some definitions in mmsystem.h (Timo Kreuzer)
svn path=/trunk/; revision=39471
2009-02-08 03:41:29 +00:00
|
|
|
#define MemoryBarrier __faststorefence
|
2008-08-30 22:54:27 +00:00
|
|
|
#elif defined(_M_PPC)
|
|
|
|
#define MemoryBarrier()
|
|
|
|
#elif defined(_M_ARM)
|
|
|
|
#define MemoryBarrier()
|
|
|
|
#else
|
|
|
|
#error Unknown architecture
|
|
|
|
#endif
|
|
|
|
|
2007-09-03 08:50:06 +00:00
|
|
|
#if defined(_M_IX86)
|
2010-11-23 16:36:24 +00:00
|
|
|
|
2009-06-22 21:07:52 +00:00
|
|
|
#ifdef _MSC_VER
|
2010-11-23 16:36:24 +00:00
|
|
|
#pragma intrinsic(__int2c)
|
2009-06-22 21:07:52 +00:00
|
|
|
#pragma intrinsic(_mm_pause)
|
2009-10-01 14:18:54 +00:00
|
|
|
#define YieldProcessor _mm_pause
|
2009-06-22 21:07:52 +00:00
|
|
|
#else
|
2005-12-29 19:54:42 +00:00
|
|
|
#define YieldProcessor() __asm__ __volatile__("pause");
|
2010-11-23 16:36:24 +00:00
|
|
|
#define __int2c() __asm__ __volatile__("int $0x2c");
|
2009-06-22 21:07:52 +00:00
|
|
|
#endif
|
2010-11-23 16:36:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
FORCEINLINE
|
|
|
|
VOID
|
|
|
|
DbgRaiseAssertionFailure(VOID)
|
|
|
|
{
|
|
|
|
__int2c();
|
|
|
|
}
|
|
|
|
|
Merge 34703, 34704, 34705, 34706, 34707, 34708, 34709 and 34710 from ros-amd64-bringup branch:
- Fix inline versions of integer <-> pointer conversion functions.
- Implement _InterlockedAnd64, _InterlockedOr64, _interlockedbittestandreset64, _interlockedbittestandset64 and gs-segment-adressing functions
- As amd64 shares most of the intrinsics of x86, implement them in intrin_x86.h
- Fix IMAGE_FIRST_SECTION macro
- Implement GetCurrentFiber(), NtCurrentTeb() and YieldProcessor()
- Fix ENUMRESLANGPROC, ENUMRESNAMEPROC and ENUMRESTYPEPROC
- Add Interlocked functions for pointers
- Add InterlockedCompareExchangePointer and InterlockedExchangePointer
- Add intrinsic port and register access functions
fix LIST_ENTRY() macro for 64 bits
add size_t definition to _mingw.h (ported from mingw)
- Update some loader structs ULONG -> ULONG_PTR / SIZE_T
svn path=/trunk/; revision=35636
2008-08-25 18:47:44 +00:00
|
|
|
#elif defined (_M_AMD64)
|
2009-06-22 21:07:52 +00:00
|
|
|
#ifdef _MSC_VER
|
2009-10-01 14:18:54 +00:00
|
|
|
#pragma intrinsic(_mm_pause)
|
2009-06-22 21:07:52 +00:00
|
|
|
#define YieldProcessor _mm_pause
|
|
|
|
#else
|
Merge 34703, 34704, 34705, 34706, 34707, 34708, 34709 and 34710 from ros-amd64-bringup branch:
- Fix inline versions of integer <-> pointer conversion functions.
- Implement _InterlockedAnd64, _InterlockedOr64, _interlockedbittestandreset64, _interlockedbittestandset64 and gs-segment-adressing functions
- As amd64 shares most of the intrinsics of x86, implement them in intrin_x86.h
- Fix IMAGE_FIRST_SECTION macro
- Implement GetCurrentFiber(), NtCurrentTeb() and YieldProcessor()
- Fix ENUMRESLANGPROC, ENUMRESNAMEPROC and ENUMRESTYPEPROC
- Add Interlocked functions for pointers
- Add InterlockedCompareExchangePointer and InterlockedExchangePointer
- Add intrinsic port and register access functions
fix LIST_ENTRY() macro for 64 bits
add size_t definition to _mingw.h (ported from mingw)
- Update some loader structs ULONG -> ULONG_PTR / SIZE_T
svn path=/trunk/; revision=35636
2008-08-25 18:47:44 +00:00
|
|
|
#define YieldProcessor() __asm__ __volatile__("pause");
|
2009-06-22 21:07:52 +00:00
|
|
|
#endif
|
2007-09-03 01:57:36 +00:00
|
|
|
#elif defined(_M_PPC)
|
|
|
|
#define YieldProcessor() __asm__ __volatile__("nop");
|
2007-09-03 08:50:06 +00:00
|
|
|
#elif defined(_M_MIPS)
|
|
|
|
#define YieldProcessor() __asm__ __volatile__("nop");
|
2008-02-05 02:58:28 +00:00
|
|
|
#elif defined(_M_ARM)
|
2010-05-14 11:45:14 +00:00
|
|
|
#define YieldProcessor __yield
|
2007-09-03 08:50:06 +00:00
|
|
|
#else
|
|
|
|
#error Unknown architecture
|
2007-09-03 01:57:36 +00:00
|
|
|
#endif
|
2005-12-29 19:54:42 +00:00
|
|
|
|
2005-12-29 19:12:09 +00:00
|
|
|
#if defined(_AMD64_)
|
|
|
|
#if defined(_M_AMD64)
|
|
|
|
|
|
|
|
#define InterlockedExchangeAddSizeT(a, b) InterlockedExchangeAdd64((LONG64 *)a, b)
|
|
|
|
|
Merge 34703, 34704, 34705, 34706, 34707, 34708, 34709 and 34710 from ros-amd64-bringup branch:
- Fix inline versions of integer <-> pointer conversion functions.
- Implement _InterlockedAnd64, _InterlockedOr64, _interlockedbittestandreset64, _interlockedbittestandset64 and gs-segment-adressing functions
- As amd64 shares most of the intrinsics of x86, implement them in intrin_x86.h
- Fix IMAGE_FIRST_SECTION macro
- Implement GetCurrentFiber(), NtCurrentTeb() and YieldProcessor()
- Fix ENUMRESLANGPROC, ENUMRESNAMEPROC and ENUMRESTYPEPROC
- Add Interlocked functions for pointers
- Add InterlockedCompareExchangePointer and InterlockedExchangePointer
- Add intrinsic port and register access functions
fix LIST_ENTRY() macro for 64 bits
add size_t definition to _mingw.h (ported from mingw)
- Update some loader structs ULONG -> ULONG_PTR / SIZE_T
svn path=/trunk/; revision=35636
2008-08-25 18:47:44 +00:00
|
|
|
#define InterlockedAnd _InterlockedAnd
|
|
|
|
#define InterlockedExchange _InterlockedExchange
|
|
|
|
#define InterlockedOr _InterlockedOr
|
|
|
|
|
|
|
|
#define InterlockedAnd64 _InterlockedAnd64
|
|
|
|
#define InterlockedOr64 _InterlockedOr64
|
|
|
|
|
|
|
|
#define InterlockedBitTestAndSet _interlockedbittestandset
|
|
|
|
#define InterlockedBitTestAndSet64 _interlockedbittestandset64
|
|
|
|
#define InterlockedBitTestAndReset _interlockedbittestandreset
|
|
|
|
#define InterlockedBitTestAndReset64 _interlockedbittestandreset64
|
|
|
|
|
|
|
|
|
2005-12-29 19:12:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define InterlockedExchangeAddSizeT(a, b) InterlockedExchangeAdd((LONG *)a, b)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2009-06-17 11:18:51 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
#endif /* RC_INVOKED */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|