123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // StdAfx.h : include file for standard system include files,
- // or project specific include files that are used frequently, but
- // are changed infrequently
- //
- #if !defined(AFX_STDAFX_H__E30B2003_188B_4EB4_AB99_3F3734D6CE6C__INCLUDED_)
- #define AFX_STDAFX_H__E30B2003_188B_4EB4_AB99_3F3734D6CE6C__INCLUDED_
- #pragma once
- #ifdef __GNUC__
- // 怎么都没找到min,max的头文件-_-
- #ifndef min
- #define min(a,b) (((a) < (b)) ? (a) : (b))
- #endif
- #ifndef max
- #define max(a,b) (((a) > (b)) ? (a) : (b))
- #endif
- #endif
- #ifndef __FILET__
- #define __DUILIB_STR2WSTR(str) L##str
- #define _DUILIB_STR2WSTR(str) __DUILIB_STR2WSTR(str)
- #ifdef _UNICODE
- #define __FILET__ _DUILIB_STR2WSTR(__FILE__)
- #define __FUNCTIONT__ _DUILIB_STR2WSTR(__FUNCTION__)
- #else
- #define __FILET__ __FILE__
- #define __FUNCTIONT__ __FUNCTION__
- #endif
- #endif
- #define _CRT_SECURE_NO_DEPRECATE
- // Remove pointless warning messages
- #ifdef _MSC_VER
- #pragma warning (disable : 4511) // copy operator could not be generated
- #pragma warning (disable : 4512) // assignment operator could not be generated
- #pragma warning (disable : 4702) // unreachable code (bugs in Microsoft's STL)
- #pragma warning (disable : 4786) // identifier was truncated
- #pragma warning (disable : 4996) // function or variable may be unsafe (deprecated)
- #ifndef _CRT_SECURE_NO_WARNINGS
- #define _CRT_SECURE_NO_WARNINGS // eliminate deprecation warnings for VS2005
- #endif
- #endif // _MSC_VER
- #ifdef __BORLANDC__
- #pragma option -w-8027 // function not expanded inline
- #endif
- // Required for VS 2008 (fails on XP and Win2000 without this fix)
- #ifndef _WIN32_WINNT
- #define _WIN32_WINNT _WIN32_WINNT_WINXP//0x0501
- #endif
- //#define USE_XIMAGE_EFFECT //使用ximage的gif控件CGifAnimExUI开关,提升性能,默认不使用
- #include "UIlib.h"
- #include <olectl.h>
- #define lengthof(x) (sizeof(x)/sizeof(*x))
- #define MAX max
- #define MIN min
- #define CLAMP(x,a,b) (MIN(b,MAX(a,x)))
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_STDAFX_H__E30B2003_188B_4EB4_AB99_3F3734D6CE6C__INCLUDED_)
|