home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / memsz231.zip / EXCEPT.H < prev    next >
Text File  |  1994-01-25  |  664b  |  19 lines

  1. /****************************************************************** EXCEPT.H
  2.  *                                                                         *
  3.  *                            Exception Handler                            *
  4.  *                                                                         *
  5.  ***************************************************************************/
  6.  
  7. #ifndef EXCEPT_H
  8. #define EXCEPT_H
  9.  
  10. extern ULONG APIENTRY ExceptionHandler
  11. (
  12.   PEXCEPTIONREPORTRECORD pExceptionReportRecord,
  13.   PEXCEPTIONREGISTRATIONRECORD pExceptionRegistrationRecord,
  14.   PCONTEXTRECORD pContextRecord,
  15.   PVOID pDispatcherContext
  16. ) ;
  17.  
  18. #endif
  19.