WTL 用的 stdafx.h

#pragma once

// Change this value to use different versions
#define WINVER 0x0420

#define _WIN32_WCE_AYGSHELL 1

#include <atlbase.h>    // 基本的ATL类
#include <atlapp.h>        // 基本的WTL类

extern CAppModule _Module;     // WTL 派生的CComModule版本

#include <atlwin.h>        // ATL 窗口类
#include <atlframe.h>    // WTL 主框架窗口类
#include <atlmisc.h>    // WTL 实用工具类,例如:CString
#include <atlcrack.h>    // WTL 增强的消息宏  (这个名字来源于“消息解密者”,是一个与windowsx.h的宏所使用的相同术语)
#include <atldlgs.h>    // WTL 很多公用的对话框

#include <aygshell.h>
#pragma comment(lib, "aygshell.lib")

你可能感兴趣的:(WTL 用的 stdafx.h)