forked from coddec/Classic-Shell
- Notifications
You must be signed in to change notification settings - Fork 452
/
Copy pathstdafx.h
24 lines (18 loc) · 573 Bytes
/
stdafx.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently,
// but are changed infrequently
#pragma once
#ifndef STRICT
#defineSTRICT
#endif
#include"targetver.h"
#define_ATL_APARTMENT_THREADED
#define_ATL_NO_AUTOMATIC_NAMESPACE
#define_ATL_MODULES// compatibility with /permissive-
#define_ATL_CSTRING_EXPLICIT_CONSTRUCTORS// some CString constructors will be explicit
#include"resource.h"
#include<atlbase.h>
#include<atlcom.h>
#include<atlctl.h>
#include<atlstr.h>
usingnamespaceATL;