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.

29 lines
494 B

  1. /****************************************************************************/
  2. // stdafx.h
  3. //
  4. // Copyright (C) 2001 Microsoft Corp.
  5. /****************************************************************************/
  6. #ifndef _STDAFX_H_
  7. #define _STDAFX_H_
  8. #endif
  9. #ifdef DBG
  10. #define DBGMSG( x , y ) \
  11. {\
  12. TCHAR tchErr[256]; \
  13. wsprintf( tchErr , x , y ); \
  14. ODS( tchErr ); \
  15. }
  16. #define ODS OutputDebugString
  17. #else
  18. #define DBGMSG
  19. #define ODS
  20. #endif