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

StdAfx.h « FileManager « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b09de5925cf96c81072c4051719d911b3329badb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// stdafx.h

#ifndef __STDAFX_H
#define __STDAFX_H

#define _WIN32_WINNT 0x0400

// it's for Windows NT supporting (MENUITEMINFOW)
#define WINVER 0x0400

#include <windows.h>
#include <stdio.h>
#include <commctrl.h>
#include <ShlObj.h>
#include <limits.h>
#include <tchar.h>
#include <shlwapi.h>

// #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers

#include "Common/NewHandler.h"

#endif