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.

49 lines
1.3 KiB

  1. /*****************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORPORATION, 1999
  4. *
  5. * TITLE: precomp.h
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: RickTu
  10. *
  11. * DATE: 5/12/99
  12. *
  13. * DESCRIPTION: Precompiled header file for common UI library
  14. *
  15. *****************************************************************************/
  16. #ifndef __PRECOMP_H_INCLUDED
  17. #define __PRECOMP_H_INCLUDED
  18. #include <windows.h>
  19. #include <commctrl.h>
  20. #include <atlbase.h>
  21. #include <propidl.h>
  22. // some common headers
  23. #include <shlobj.h> // shell OM interfaces
  24. #include <shlwapi.h> // shell common API
  25. #include <winspool.h> // spooler
  26. #include <assert.h> // assert
  27. #include <commctrl.h> // common controls
  28. #include <lm.h> // Lan manager (netapi32.dll)
  29. #include <wininet.h> // inet core - necessary for INTERNET_MAX_HOST_NAME_LENGTH
  30. // some private shell headers
  31. #include <shlwapip.h> // private shell common API
  32. #include <shpriv.h> // private shell interfaces
  33. #include <iepriv.h> // private ie interfaces
  34. #include <comctrlp.h> // private common controls
  35. // GDI+
  36. #include <gdiplus.h> // GDI+ headers
  37. #include <gdiplusinit.h> // GDI+ init headers
  38. // STL
  39. #include <algorithm> // STL algorithms
  40. #endif