home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / code / ntfiles / apierr.h next >
Encoding:
C/C++ Source or Header  |  1995-05-19  |  214 b   |  11 lines

  1. #ifndef _WINDOWS_
  2. #include <windows.h>
  3. #endif
  4.  
  5. #ifndef _INC_STDIO
  6. #include <stdio.h>
  7. #endif
  8.  
  9. #define PERR(api) printf("%s: Error %d from %s on line %d\n",  \
  10.     __FILE__, GetLastError(), api, __LINE__);
  11.