-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathstdafx.h
38 lines (29 loc) · 785 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <string>
// Exclude rarely-used stuff from Windows headers
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
// C RunTime Header Files
#pragma warning(push)
#pragma warning(disable: 4091)
#include <ShlObj.h>
#pragma warning(pop)
#include <shellapi.h>
#include <CommDlg.h>
#include <tchar.h>
#include "resource.h"
//-------------------------------------------------------------------------
#ifdef _UNICODE
#define stringT std::wstring
#else
#define stringT std::string
#endif
#include "ResetPermission.h"