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.

43 lines
691 B

  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently, but
  3. // are changed infrequently
  4. //
  5. #include <nt.h>
  6. #include <ntrtl.h>
  7. #include <nturtl.h>
  8. #ifdef ASSERT
  9. # undef ASSERT
  10. #endif
  11. #include <afxwin.h> // MFC core and standard components
  12. #include <afxext.h> // MFC extensions
  13. #include <llsapi.h>
  14. extern "C"
  15. {
  16. # include <ntlsa.h>
  17. }
  18. #include <afxdisp.h> // MFC OLE automation classes
  19. #include <afxcmn.h>
  20. #include <afxdlgs.h>
  21. #ifdef DBG
  22. #define DBGMSG( x , y ) \
  23. { \
  24. TCHAR tchmsg[80]; \
  25. wsprintf( tchmsg , x , y ); \
  26. OutputDebugString( tchmsg );\
  27. }
  28. #else
  29. #define DBGMSG
  30. #endif