Source code of Windows XP (NT5)
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.

34 lines
520 B

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