home *** CD-ROM | disk | FTP | other *** search
- ;
- ; FAULT.INC
- ;
- ; Definitions and external references for use from assembly modules.
- ;
- ; Copyright(c) Microsoft Corp. 1992 All Rights Reserved
- ;
-
-
- ;
- ; External data.
- ;
-
- externFP <Throw> ;From Kernel
- externFP <TerminateApp> ;From ToolHelp
-
- externW <_wException> ;Indicates what exceptions we want.
- externFP <_pcbEx> ;Pointer to a CATCHBUF to use in Throw
-
-
- ;
- ; Bits for wException. These must match FAULT.H.
- ;
-
- EXCEPTION_NONE equ 00h //Turns handling off.
- EXCEPTION_DIVIDEBYZERO equ 01h
- EXCEPTION_GPFAULT equ 02h
- EXCEPTION_ALL equ 03h //Looks for all exceptions above.
-