stdafx.h 783 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // stdafx.h : 标准系统包含文件的包含文件,或是常用但不常更改的项目特定的包含文件
  2. #ifndef _STDAFX_H_
  3. #define _STDAFX_H_
  4. #pragma once
  5. #pragma warning(disable: 4311)
  6. #pragma warning(disable: 4312)
  7. #define WINVER 0x0501
  8. #include <afxwin.h>
  9. #include <commctrl.h>
  10. #include "SkinBase.h"
  11. #include "SkinEnums.h"
  12. #include "SkinStruct.h"
  13. #include "SkinTool.h"
  14. #include "SkinDrawHelper.h"
  15. #include "ObjectSkin.h"
  16. #include "SkinTools.h"
  17. #include "SkinBitmap.h"
  18. #include "SkinTextType.h"
  19. #include "MenDC.h"
  20. #include "Skin.h"
  21. #if defined(_WIN64)
  22. typedef __int64 LONG_PTR;
  23. #else
  24. typedef long LONG_PTR;
  25. #endif
  26. // #if defined(_WIN64)
  27. // typedef __int64 DWORD_PTR;
  28. // #else
  29. // typedef long DWORD_PTR;
  30. // #endif
  31. // #define BS_PUSHBOX 0x0000000A
  32. // #define SS_EDITCONTROL 0x00002000
  33. #endif