This commit is contained in:
Igor Pavlov
2014-11-23 00:00:00 +00:00
committed by Kornel Lesiński
parent 83f8ddcc5b
commit f08f4dcc3c
1158 changed files with 76451 additions and 35082 deletions

18
CPP/7zip/UI/FileManager/StdAfx.h Executable file → Normal file
View File

@@ -3,21 +3,17 @@
#ifndef __STDAFX_H
#define __STDAFX_H
#define _WIN32_WINNT 0x0400
/* we used 0x0400 for Windows NT supporting (MENUITEMINFOW)
But now menu problem is fixed. So it's OK to use 0x0500 (Windows 2000) */
// it's for Windows NT supporting (MENUITEMINFOW)
#define WINVER 0x0400
// #define _WIN32_WINNT 0x0400
#define _WIN32_WINNT 0x0500
#define WINVER _WIN32_WINNT
#include "../../../Common/Common.h"
#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