-
-
Notifications
You must be signed in to change notification settings - Fork 443
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
#ifndef NTXPUNDEF_H | ||
#define NTXPUNDEF_H | ||
#if (_WIN32_WINNT <= _WIN32_WINNT_WIN7) | ||
typedef | ||
__drv_sameIRQL | ||
typedef __drv_sameIRQL | ||
__drv_functionClass(EXCEPTION_ROUTINE) | ||
EXCEPTION_DISPOSITION | ||
NTAPI | ||
EXCEPTION_ROUTINE( | ||
__inout struct _EXCEPTION_RECORD* ExceptionRecord, | ||
__inout struct _EXCEPTION_RECORD *ExceptionRecord, | ||
__in PVOID EstablisherFrame, | ||
__inout struct _CONTEXT* ContextRecord, | ||
__in PVOID DispatcherContext | ||
); | ||
typedef EXCEPTION_ROUTINE* PEXCEPTION_ROUTINE; | ||
typedef struct _EXCEPTION_REGISTRATION_RECORD { | ||
struct _EXCEPTION_REGISTRATION_RECORD* Next; | ||
__inout struct _CONTEXT *ContextRecord, | ||
__in PVOID DispatcherContext); | ||
typedef EXCEPTION_ROUTINE *PEXCEPTION_ROUTINE; | ||
typedef struct _EXCEPTION_REGISTRATION_RECORD | ||
{ | ||
struct _EXCEPTION_REGISTRATION_RECORD *Next; | ||
PEXCEPTION_ROUTINE Handler; | ||
} EXCEPTION_REGISTRATION_RECORD; | ||
|
||
#endif // !EXCEPTION_REGISTRATION_RECORD | ||
#endif // !EXCEPTION_REGISTRATION_RECORD | ||
#endif // NTXPUNDEF_H |