home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.5 / Group18 / exutil.h < prev    next >
C/C++ Source or Header  |  1997-10-28  |  417b  |  24 lines

  1. /*
  2.  * Definitions of some internal stuff for exception handling, including
  3.  * a version of the all-important EXCEPTION_REGISTRATION_RECORD.
  4.  */
  5.  
  6. #ifndef _EXUTIL_H_
  7. #define _EXUTIL_H_
  8.  
  9. #include <windows.h>
  10. #include <excpt.h>
  11.  
  12. #ifdef    __cplusplus
  13. extern "C" {
  14. #endif
  15.  
  16. void WalkExceptionHandlers ();
  17. void DumpExceptionRecord (struct _EXCEPTION_RECORD* pExRec);
  18.  
  19. #ifdef    __cplusplus
  20. }
  21. #endif
  22.  
  23. #endif
  24.