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.

40 lines
524 B

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. intapi.h
  5. Abstract:
  6. This header defines the function prototypes for the interrupt
  7. handler support routines in the 486 emulator.
  8. Author:
  9. Neil Sandlin (neilsa)
  10. Notes:
  11. Revision History:
  12. --*/
  13. NTSTATUS
  14. VdmInstallHardwareIntHandler(
  15. PVOID HwIntHandler
  16. );
  17. NTSTATUS
  18. VdmInstallSoftwareIntHandler(
  19. PVOID SwIntHandler
  20. );
  21. NTSTATUS
  22. VdmInstallFaultHandler(
  23. PVOID FaultHandler
  24. );