Fix GCC compile errors under Linux due to case sensitivity in #include
Closse #7528
This commit is contained in:
parent
3011612c70
commit
98f4b1503e
@ -36,7 +36,7 @@
|
|||||||
#include <wincrypt.h>
|
#include <wincrypt.h>
|
||||||
#include <sensapi.h>
|
#include <sensapi.h>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include "VerifySignedFile.h"
|
#include "verifySignedfile.h"
|
||||||
#include "Common.h"
|
#include "Common.h"
|
||||||
#include "sha-256.h"
|
#include "sha-256.h"
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
|
|
||||||
#include <shlwapi.h>
|
#include <shlwapi.h>
|
||||||
#include <DbgHelp.h>
|
#include <dbghelp.h>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cinttypes>
|
#include <cinttypes>
|
||||||
#include "PluginsManager.h"
|
#include "PluginsManager.h"
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#ifndef PROCESSUS_H
|
#ifndef PROCESSUS_H
|
||||||
#define PROCESSUS_H
|
#define PROCESSUS_H
|
||||||
|
|
||||||
#include "common.h"
|
#include "Common.h"
|
||||||
|
|
||||||
enum progType {WIN32_PROG, CONSOLE_PROG};
|
enum progType {WIN32_PROG, CONSOLE_PROG};
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
#include "functionListPanel.h"
|
#include "functionListPanel.h"
|
||||||
#include "fileBrowser.h"
|
#include "fileBrowser.h"
|
||||||
#include "Sorters.h"
|
#include "Sorters.h"
|
||||||
#include "verifySignedFile.h"
|
#include "verifySignedfile.h"
|
||||||
#include "md5.h"
|
#include "md5.h"
|
||||||
#include "sha-256.h"
|
#include "sha-256.h"
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <shlwapi.h>
|
#include <shlwapi.h>
|
||||||
#include <ShlObj.h>
|
#include <shlobj.h>
|
||||||
#include "Notepad_plus_Window.h"
|
#include "Notepad_plus_Window.h"
|
||||||
#include "FileDialog.h"
|
#include "FileDialog.h"
|
||||||
#include "EncodingMapper.h"
|
#include "EncodingMapper.h"
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
#include "Parameters.h"
|
#include "Parameters.h"
|
||||||
#include "Sorters.h"
|
#include "Sorters.h"
|
||||||
#include "tchar.h"
|
#include "tchar.h"
|
||||||
#include "verifySignedFile.h"
|
#include "verifySignedfile.h"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
#include "Window.h"
|
#include "Window.h"
|
||||||
#include "Common.h"
|
#include "Common.h"
|
||||||
|
|
||||||
#include <Commctrl.h>
|
#include <commctrl.h>
|
||||||
|
|
||||||
struct columnInfo {
|
struct columnInfo {
|
||||||
size_t _width;
|
size_t _width;
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include "FileBrowser_rc.h"
|
#include "fileBrowser_rc.h"
|
||||||
|
|
||||||
IDD_FILEBROWSER DIALOGEX 26, 41, 142, 324
|
IDD_FILEBROWSER DIALOGEX 26, 41, 142, 324
|
||||||
STYLE DS_SETFONT | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
STYLE DS_SETFONT | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
#include "localization.h"
|
#include "localization.h"
|
||||||
#include "Processus.h"
|
#include "Processus.h"
|
||||||
#include "PluginsManager.h"
|
#include "PluginsManager.h"
|
||||||
#include "verifySignedFile.h"
|
#include "verifySignedfile.h"
|
||||||
|
|
||||||
#define TEXTFILE 256
|
#define TEXTFILE 256
|
||||||
#define IDR_PLUGINLISTJSONFILE 101
|
#define IDR_PLUGINLISTJSONFILE 101
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
// along with this program; if not, write to the Free Software
|
// along with this program; if not, write to the Free Software
|
||||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
#include <WindowsX.h>
|
#include <windowsx.h>
|
||||||
|
|
||||||
#include "ProjectPanel.h"
|
#include "ProjectPanel.h"
|
||||||
#include "resource.h"
|
#include "resource.h"
|
||||||
|
@ -5,4 +5,4 @@
|
|||||||
// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and
|
// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and
|
||||||
// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.
|
// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.
|
||||||
|
|
||||||
#include <SDKDDKVer.h>
|
#include <sdkddkver.h>
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include "Processus.h"
|
#include "Processus.h"
|
||||||
#include "Win32Exception.h" //Win32 exception
|
#include "Win32Exception.h" //Win32 exception
|
||||||
#include "MiniDumper.h" //Write dump files
|
#include "MiniDumper.h" //Write dump files
|
||||||
#include "verifySignedFile.h"
|
#include "verifySignedfile.h"
|
||||||
|
|
||||||
typedef std::vector<generic_string> ParamVector;
|
typedef std::vector<generic_string> ParamVector;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user