| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- // stdafx.h : 标准系统包含文件的包含文件,或是常用但不常更改的项目特定的包含文件
- #ifndef _STDAFX_H_
- #define _STDAFX_H_
- #pragma once
- #pragma warning(disable: 4311)
- #pragma warning(disable: 4312)
- #define WINVER 0x0501
- #include <afxwin.h>
- #include <commctrl.h>
- #include "SkinBase.h"
- #include "SkinEnums.h"
- #include "SkinStruct.h"
- #include "SkinTool.h"
- #include "SkinDrawHelper.h"
- #include "ObjectSkin.h"
- #include "SkinTools.h"
- #include "SkinBitmap.h"
- #include "SkinTextType.h"
- #include "MenDC.h"
- #include "Skin.h"
- #if defined(_WIN64)
- typedef __int64 LONG_PTR;
- #else
- typedef long LONG_PTR;
- #endif
- // #if defined(_WIN64)
- // typedef __int64 DWORD_PTR;
- // #else
- // typedef long DWORD_PTR;
- // #endif
- // #define BS_PUSHBOX 0x0000000A
- // #define SS_EDITCONTROL 0x00002000
- #endif
|