Dbgwnd.h 189 B

123456789101112131415161718
  1. #ifdef __cplusplus
  2. extern "C"
  3. {
  4. #endif
  5. #ifndef NOTDEBUGPRINT
  6. #define dbgprintf DebugPrint
  7. #else
  8. #define dbgprintf
  9. #endif
  10. void DebugPrint(char *text, ...);
  11. #ifdef __cplusplus
  12. }
  13. #endif