mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
Fix msvc/gcc NDK problem
svn path=/trunk/; revision=19479
This commit is contained in:
parent
7208d96617
commit
348e9f5f3d
3 changed files with 10 additions and 4 deletions
|
@ -112,7 +112,6 @@ Author:
|
|||
#define TIME_ZONE_ID_UNKNOWN 0
|
||||
#define TIME_ZONE_ID_STANDARD 1
|
||||
#define TIME_ZONE_ID_DAYLIGHT 2
|
||||
#define TIME_ZONE_ID_INVALID 0xFFFFFFFF
|
||||
|
||||
//
|
||||
// RTL Lock Type (Critical Section or Resource)
|
||||
|
@ -669,7 +668,7 @@ typedef struct _RTL_HANDLE_TABLE
|
|||
typedef struct _EXCEPTION_REGISTRATION_RECORD
|
||||
{
|
||||
struct _EXCEPTION_REGISTRATION_RECORD *Next;
|
||||
PEXCEPTION_HANDLER Handler;
|
||||
PEXCEPTION_ROUTINE Handler;
|
||||
} EXCEPTION_REGISTRATION_RECORD, *PEXCEPTION_REGISTRATION_RECORD;
|
||||
|
||||
//
|
||||
|
|
|
@ -75,7 +75,7 @@ RtlpExecuteHandlerForException(PEXCEPTION_RECORD ExceptionRecord,
|
|||
PEXCEPTION_REGISTRATION_RECORD RegistrationFrame,
|
||||
PCONTEXT Context,
|
||||
PVOID DispatcherContext,
|
||||
PEXCEPTION_HANDLER ExceptionHandler);
|
||||
PEXCEPTION_ROUTINE ExceptionHandler);
|
||||
|
||||
EXCEPTION_DISPOSITION
|
||||
NTAPI
|
||||
|
@ -83,7 +83,7 @@ RtlpExecuteHandlerForUnwind(PEXCEPTION_RECORD ExceptionRecord,
|
|||
PEXCEPTION_REGISTRATION_RECORD RegistrationFrame,
|
||||
PCONTEXT Context,
|
||||
PVOID DispatcherContext,
|
||||
PEXCEPTION_HANDLER ExceptionHandler);
|
||||
PEXCEPTION_ROUTINE ExceptionHandler);
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
|
|
|
@ -553,6 +553,13 @@ typedef IO_ALLOCATION_ACTION
|
|||
IN PVOID MapRegisterBase,
|
||||
IN PVOID Context);
|
||||
|
||||
typedef EXCEPTION_DISPOSITION
|
||||
(DDKAPI *PEXCEPTION_ROUTINE)(
|
||||
IN struct _EXCEPTION_RECORD *ExceptionRecord,
|
||||
IN PVOID EstablisherFrame,
|
||||
IN OUT struct _CONTEXT *ContextRecord,
|
||||
IN OUT PVOID DispatcherContext);
|
||||
|
||||
typedef VOID
|
||||
(DDKAPI *PDRIVER_LIST_CONTROL)(
|
||||
IN struct _DEVICE_OBJECT *DeviceObject,
|
||||
|
|
Loading…
Reference in a new issue