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.

27 lines
582 B

  1. #if !defined(RENDERUTIL__StdAfx_h__INCLUDED)
  2. #define RENDERUTIL__StdAfx_h__INCLUDED
  3. #pragma once
  4. #if !defined(WIN32_LEAN_AND_MEAN)
  5. #define WIN32_LEAN_AND_MEAN
  6. #endif
  7. #if !defined(_WIN32_WINNT)
  8. #define _WIN32_WINNT 0x0500 // Only compile for NT5
  9. #endif
  10. // Windows
  11. #include <windows.h>
  12. #include <objbase.h> // CoCreateInstance, IUnknown
  13. #pragma warning(push, 3)
  14. #include <GdiPlus.h> // GDI+
  15. #pragma warning(pop)
  16. // CRT
  17. #include <math.h>
  18. // DirectUser
  19. #include <AutoUtil.h>
  20. #endif // !defined(RENDERUTIL__StdAfx_h__INCLUDED)