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.

32 lines
653 B

  1. // pch.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. #ifndef __TaskApp_PCH_
  6. #define __TaskApp_PCH_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  11. #include <windows.h>
  12. #include <shlwapi.h>
  13. #include <shlwapip.h>
  14. #include <commctrl.h>
  15. #include <comctrlp.h>
  16. #include <dpa.h>
  17. #include <debug.h>
  18. #include <ccstock.h>
  19. #include <atlbase.h>
  20. extern CComModule _Module;
  21. #include <atlcom.h>
  22. #include <atlwin.h>
  23. #include "TaskUI.h"
  24. #endif // __TaskApp_PCH_