72 lines
1.7 KiB
C
72 lines
1.7 KiB
C
|
// stdafx.h : <20><>ϵͳ<CFB5><CDB3><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC>İ<EFBFBD><C4B0><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>
|
|||
|
// <20><><EFBFBD>Ǿ<EFBFBD><C7BE><EFBFBD>ʹ<EFBFBD>õ<EFBFBD><C3B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD>
|
|||
|
// <20>ض<EFBFBD><D8B6><EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD>İ<EFBFBD><C4B0><EFBFBD><EFBFBD>ļ<EFBFBD>
|
|||
|
|
|||
|
#pragma once
|
|||
|
|
|||
|
#pragma comment(linker, "/nodefaultlib:libc.lib")
|
|||
|
#pragma comment(linker, "/nodefaultlib:libcd.lib")
|
|||
|
|
|||
|
// ע<><D7A2> - <20><><EFBFBD><EFBFBD>ֵ<EFBFBD><D6B5><EFBFBD><EFBFBD>ΪĿ<CEAA><C4BF><EFBFBD><EFBFBD> Windows CE OS <20>汾<EFBFBD>Ĺ<EFBFBD><C4B9><EFBFBD><EFBFBD>Բ<EFBFBD><D4B2><EFBFBD>ǿ
|
|||
|
#define WINVER _WIN32_WCE
|
|||
|
|
|||
|
#ifndef VC_EXTRALEAN
|
|||
|
#define VC_EXTRALEAN // <20><> Windows ͷ<><CDB7><EFBFBD>ų<EFBFBD><C5B3><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD>õ<EFBFBD><C3B5><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
#endif
|
|||
|
|
|||
|
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // ijЩ CString <20><><EFBFBD>캯<EFBFBD><ECBAAF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʽ<EFBFBD><CABD>
|
|||
|
#ifdef _CE_DCOM
|
|||
|
#define _ATL_APARTMENT_THREADED
|
|||
|
#endif
|
|||
|
|
|||
|
// <20>ر<EFBFBD> MFC <20><>ijЩ<C4B3><D0A9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɷ<EFBFBD><C9B7>ĺ<EFBFBD><C4BA>Եľ<D4B5><C4BE><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
#define _AFX_ALL_WARNINGS
|
|||
|
|
|||
|
#include <ceconfig.h>
|
|||
|
#if defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)
|
|||
|
#define SHELL_AYGSHELL
|
|||
|
#endif
|
|||
|
|
|||
|
#include <afxwin.h> // MFC <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͱ<EFBFBD><EFBFBD><D7BC><EFBFBD><EFBFBD>
|
|||
|
#include <afxext.h> // MFC <20><>չ
|
|||
|
|
|||
|
#ifndef _AFX_NO_OLE_SUPPORT
|
|||
|
#include <afxdtctl.h> // MFC <20><> Internet Explorer 4 <20><><EFBFBD><EFBFBD><EFBFBD>ؼ<EFBFBD><D8BC><EFBFBD>֧<EFBFBD><D6A7>
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#ifndef _AFX_NO_AFXCMN_SUPPORT
|
|||
|
#include <afxcmn.h> // MFC <20><> Windows <20><><EFBFBD><EFBFBD><EFBFBD>ؼ<EFBFBD><D8BC><EFBFBD>֧<EFBFBD><D6A7>
|
|||
|
#endif // _AFX_NO_AFXCMN_SUPPORT
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#if defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)
|
|||
|
#ifndef _DEVICE_RESOLUTION_AWARE
|
|||
|
#define _DEVICE_RESOLUTION_AWARE
|
|||
|
#endif
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _DEVICE_RESOLUTION_AWARE
|
|||
|
#include "DeviceResolutionAware.h"
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef SHELL_AYGSHELL
|
|||
|
#include <aygshell.h>
|
|||
|
#pragma comment(lib, "aygshell.lib")
|
|||
|
#endif // SHELL_AYGSHELL
|
|||
|
|
|||
|
#if (_WIN32_WCE < 0x500) && ( defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP) )
|
|||
|
#pragma comment(lib, "ccrtrtti.lib")
|
|||
|
#ifdef _X86_
|
|||
|
#if defined(_DEBUG)
|
|||
|
#pragma comment(lib, "libcmtx86d.lib")
|
|||
|
#else
|
|||
|
#pragma comment(lib, "libcmtx86.lib")
|
|||
|
#endif
|
|||
|
#endif
|
|||
|
#endif
|
|||
|
|
|||
|
#include <altcecrt.h>
|