* include/winbase.h (AddVectoredExceptionHandler): Define if
_WIN32_WINNT >= 0x0500. * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if _WIN32_WINNT >= 0x0500.
This commit is contained in:
parent
ea4980efe1
commit
38f9123efd
|
@ -1,3 +1,11 @@
|
|||
2003-10-09 Dimitri Papadopoulos <papadopo@users.sourceforge.net>
|
||||
|
||||
* include/winbase.h (AddVectoredExceptionHandler): Define if
|
||||
_WIN32_WINNT >= 0x0500.
|
||||
|
||||
* include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
|
||||
_WIN32_WINNT >= 0x0500.
|
||||
|
||||
2003-10-08 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* include/winbase.h (AddVectoredExceptionHandler): Only define if
|
||||
|
|
|
@ -1061,7 +1061,7 @@ BOOL WINAPI AddAuditAccessAce(PACL,DWORD,DWORD,PSID,BOOL,BOOL);
|
|||
#if (_WIN32_WINNT >= 0x0501)
|
||||
void WINAPI AddRefActCtx(HANDLE);
|
||||
#endif
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
#if (_WIN32_WINNT >= 0x0500)
|
||||
PVOID WINAPI AddVectoredExceptionHandler(ULONG,PVECTORED_EXCEPTION_HANDLER);
|
||||
#endif
|
||||
BOOL WINAPI AdjustTokenGroups(HANDLE,BOOL,PTOKEN_GROUPS,DWORD,PTOKEN_GROUPS,PDWORD);
|
||||
|
|
|
@ -2074,12 +2074,6 @@ typedef enum tagTOKEN_TYPE {
|
|||
TokenPrimary = 1,
|
||||
TokenImpersonation
|
||||
} TOKEN_TYPE,*PTOKEN_TYPE;
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
typedef LONG (WINAPI *PVECTORED_EXCEPTION_HANDLER)(PEXCEPTION_POINTERS);
|
||||
typedef enum _HEAP_INFORMATION_CLASS {
|
||||
HeapCompatibilityInformation
|
||||
} HEAP_INFORMATION_CLASS;
|
||||
#endif
|
||||
typedef struct _TOKEN_STATISTICS {
|
||||
LUID TokenId;
|
||||
LUID AuthenticationId;
|
||||
|
@ -3167,6 +3161,9 @@ typedef enum _POWER_INFORMATION_LEVEL {
|
|||
ProcessorPowerPolicyCurrent
|
||||
} POWER_INFORMATION_LEVEL;
|
||||
|
||||
#if (_WIN32_WINNT >= 0x0500)
|
||||
typedef LONG (WINAPI *PVECTORED_EXCEPTION_HANDLER)(PEXCEPTION_POINTERS);
|
||||
#endif
|
||||
#if 1 /* (WIN32_WINNT >= 0x0500) */
|
||||
typedef struct _SYSTEM_POWER_INFORMATION {
|
||||
ULONG MaxIdlenessAllowed;
|
||||
|
@ -3176,7 +3173,10 @@ typedef struct _SYSTEM_POWER_INFORMATION {
|
|||
} SYSTEM_POWER_INFORMATION,*PSYSTEM_POWER_INFORMATION;
|
||||
#endif
|
||||
|
||||
#if (WIN32_WINNT >= 0x0501)
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
typedef enum _HEAP_INFORMATION_CLASS {
|
||||
HeapCompatibilityInformation
|
||||
} HEAP_INFORMATION_CLASS;
|
||||
typedef enum _ACTIVATION_CONTEXT_INFO_CLASS {
|
||||
ActivationContextBasicInformation = 1,
|
||||
ActivationContextDetailedInformation,
|
||||
|
|
Loading…
Reference in New Issue