stdafx.h
来自「一个完整的IE插件的程序的源代码(有些参考价值)」· C头文件 代码 · 共 36 行
H
36 行
// stdafx.h
//
// @author christian oetterli
//
#ifndef __STDAFX_H__
#define __STDAFX_H__
#define STRICT
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0400
#endif
#define _ATL_APARTMENT_THREADED
#include <atlbase.h>
#include <shlobj.h>
#include <oleidl.h>
extern CComModule _Module;
#include <atlcom.h>
#include <atlctl.h>
#include <vector>
using namespace std;
#include "ATL_CString.h"
#include "comstuff.h"
#include "utility.h"
#include "reference_msxml3.h"
#include "extension_msxml3.h"
#include "reference_msscript.h"
#endif //__STDAFX_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?