Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
530 B

  1. /************************************************************************
  2. mxdebug.h
  3. -- for debug message
  4. History: Date Author Comment
  5. 8/14/00 Casper Wrote it.
  6. *************************************************************************/
  7. #ifndef _MXDEBUG_H
  8. #define _MXDEBUG_H
  9. #ifdef _DEBUG
  10. //#define Mx_Debug_Out(str) OutputDebugString(str)
  11. #define Mx_Debug_Out(str) MessageBox(NULL, str, "DEBUG", MB_OK);
  12. #else
  13. #define Mx_Debug_Out(str)
  14. #endif
  15. #endif