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
40 lines
524 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
intapi.h
|
|
|
|
Abstract:
|
|
|
|
This header defines the function prototypes for the interrupt
|
|
handler support routines in the 486 emulator.
|
|
|
|
Author:
|
|
|
|
Neil Sandlin (neilsa)
|
|
|
|
Notes:
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
NTSTATUS
|
|
VdmInstallHardwareIntHandler(
|
|
PVOID HwIntHandler
|
|
);
|
|
|
|
NTSTATUS
|
|
VdmInstallSoftwareIntHandler(
|
|
PVOID SwIntHandler
|
|
);
|
|
|
|
NTSTATUS
|
|
VdmInstallFaultHandler(
|
|
PVOID FaultHandler
|
|
);
|
|
|