home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / WIN_NT / MAPCON.ZIP / MAPDEBUG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-03  |  832 b   |  23 lines

  1. // ---------------------------------------------------------------------
  2. //          Header file for MAPDEBUG
  3. // ---------------------------------------------------------------------
  4.  
  5.  
  6. // ----------------------------------------------------------------------
  7. //             Debugging map entry definition
  8. // ----------------------------------------------------------------------
  9.  
  10. typedef struct        {
  11.                          UINT        SymbAddr;
  12.                          char        Routine[32];
  13.                          char        Module[16];
  14.                         } DEBUGMAP, * PDEBUGMAP;
  15.  
  16. // ---------------------------------------------------------------------
  17. //          Function prototypes
  18. // ---------------------------------------------------------------------
  19.  
  20. BOOL OpenDebug( VOID );
  21. int HandleException( DWORD ExceptionCode, PEXCEPTION_RECORD ExceptionInfo );
  22. BOOL CloseDebug( VOID );
  23.