Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
794 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. ntrtlamd64.h
  5. Abstract:
  6. AMD64 specific parts of ntrtlp.h.
  7. Author:
  8. David N. Cutler (davec) 27-Oct-2000
  9. --*/
  10. #ifndef _NTRTLAMD64_
  11. #define _NTRTLAMD64_
  12. //
  13. // Define exception routine function prototypes.
  14. //
  15. EXCEPTION_DISPOSITION
  16. RtlpExecuteHandlerForException (
  17. IN PEXCEPTION_RECORD ExceptionRecord,
  18. IN ULONG64 EstablisherFrame,
  19. IN OUT PCONTEXT ContextRecord,
  20. IN OUT PDISPATCHER_CONTEXT DispatcherContext
  21. );
  22. EXCEPTION_DISPOSITION
  23. RtlpExecuteHandlerForUnwind (
  24. IN PEXCEPTION_RECORD ExceptionRecord,
  25. IN ULONG_PTR EstablisherFrame,
  26. IN OUT PCONTEXT ContextRecord,
  27. IN OUT PDISPATCHER_CONTEXT DispatcherContext
  28. );
  29. #endif // _NTRTLAMD64_