Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StdAfx.h « Explorer « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9c0ee3a22deb4f1cfce1d3107def94756b71f3f (plain)
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
// StdAfx.h

#ifndef __STDAFX_H
#define __STDAFX_H

#define _WIN32_WINNT 0x0400
// it's hack for Windows NT supporting 
#define WINVER 0x0400

// #define _WIN32_IE 0x0500
#include <windows.h>
#include <CommCtrl.h>
#include <shlobj.h>
#include <tchar.h>

#include <stddef.h>
#include <string.h>
#include <mbstring.h>
#include <wchar.h>

#include <shlguid.h>
#include <regstr.h>

#include "Common/NewHandler.h"

#endif