fix couple of header names to work on case-sensitive file systems

This commit is contained in:
rofl0r 2024-12-06 01:28:24 +00:00
parent 8a4fd0a9cb
commit dfcd482933
14 changed files with 27 additions and 27 deletions

View File

@ -20,8 +20,8 @@
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#include <Commdlg.h> #include <commdlg.h>
#include <Shellapi.h> #include <shellapi.h>
#include <vfw.h> #include <vfw.h>

View File

@ -17,8 +17,8 @@ along with the this software. If not, see <http://www.gnu.org/licenses/>.
#include "display.h" #include "display.h"
#include <MMSystem.h> #include <mmsystem.h>
#include <WindowsX.h> #include <windowsx.h>
#include "main.h" #include "main.h"
#include "windriver.h" #include "windriver.h"

View File

@ -21,8 +21,8 @@
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#include <Commdlg.h> #include <commdlg.h>
#include <Shellapi.h> #include <shellapi.h>
#include "hotkey.h" #include "hotkey.h"
@ -39,7 +39,7 @@
#include "frontend/modules/ImageOut.h" #include "frontend/modules/ImageOut.h"
#include "main.h" #include "main.h"
#include "CheatsWin.h" #include "cheatsWin.h"
#include "inputdx.h" #include "inputdx.h"
#include "throttle.h" #include "throttle.h"
#include "ramwatch.h" //In order to call UpdateRamWatch (for loadstate functions) #include "ramwatch.h" //In order to call UpdateRamWatch (for loadstate functions)

View File

@ -24,10 +24,10 @@
#define INPUTDX_INCLUDED #define INPUTDX_INCLUDED
#include <windows.h> #include <windows.h>
#include <Mmsystem.h> #include <mmsystem.h>
#define DIRECTINPUT_VERSION 0x0800 #define DIRECTINPUT_VERSION 0x0800
#include "directx/dinput.h" #include "directx/dinput.h"
#include "directx/xinput.h" #include "directx/XInput.h"
typedef struct typedef struct
{ {

View File

@ -23,8 +23,8 @@
#include <algorithm> #include <algorithm>
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#include <Commdlg.h> #include <commdlg.h>
#include <Shellapi.h> #include <shellapi.h>
#include "driver.h" #include "driver.h"
#include "lua-engine.h" #include "lua-engine.h"

View File

@ -26,8 +26,8 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include <Winuser.h> #include <winuser.h>
#include <Winnls.h> #include <winnls.h>
#include <windowsx.h> #include <windowsx.h>
#include <mmsystem.h> #include <mmsystem.h>
#include <shellapi.h> #include <shellapi.h>
@ -100,9 +100,9 @@
#include "palView.h" #include "palView.h"
#include "tileView.h" #include "tileView.h"
#include "oamView.h" #include "oamView.h"
#include "mapview.h" #include "mapView.h"
#include "matrixview.h" #include "matrixView.h"
#include "lightview.h" #include "lightView.h"
#include "slot1_config.h" #include "slot1_config.h"
#include "gbaslot_config.h" #include "gbaslot_config.h"
#include "cheatsWin.h" #include "cheatsWin.h"

View File

@ -20,7 +20,7 @@
#define _MAIN_H_ #define _MAIN_H_
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <Windows.h> #include <windows.h>
#include "types.h" #include "types.h"
#include "CWindow.h" #include "CWindow.h"

View File

@ -26,8 +26,8 @@
#include "OGLRender.h" #include "OGLRender.h"
#include <gl/gl.h> #include <GL/gl.h>
#include <gl/glext.h> #include <GL/glext.h>
#include <GL/wglext.h> #include <GL/wglext.h>
#include "console.h" #include "console.h"
#include "CWindow.h" #include "CWindow.h"

View File

@ -63,7 +63,7 @@
#include "cheatsWin.h" #include "cheatsWin.h"
#ifdef _WIN32 #ifdef _WIN32
#include "BaseTsd.h" #include "basetsd.h"
typedef INT_PTR intptr_t; typedef INT_PTR intptr_t;
#else #else
#include "stdint.h" #include "stdint.h"

View File

@ -19,7 +19,7 @@
#include "snddx.h" #include "snddx.h"
#include <stdio.h> #include <stdio.h>
#include <Windows.h> #include <windows.h>
#include <mmsystem.h> #include <mmsystem.h>
#include "directx/dsound.h" #include "directx/dsound.h"

View File

@ -23,8 +23,8 @@
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#include <Commdlg.h> #include <commdlg.h>
#include <Shellapi.h> #include <shellapi.h>
#include "types.h" #include "types.h"
#include "debug.h" #include "debug.h"

View File

@ -22,7 +22,7 @@
#include <string.h> #include <string.h>
#include <windows.h> #include <windows.h>
#include <windef.h> #include <windef.h>
#include <ShlObj.h> #include <shlobj.h>
char IniName[MAX_PATH]; char IniName[MAX_PATH];
@ -200,4 +200,4 @@ int GetSubMenuIndexByHMENU(HMENU menu, HMENU sub)
if(sub == trial) return i; if(sub == trial) return i;
} }
return -1; return -1;
} }

View File

@ -21,7 +21,7 @@
#include <windows.h> #include <windows.h>
#if defined(WIN32_FRONTEND) #if defined(WIN32_FRONTEND)
#include <direct.h> #include <direct.h>
#include <MMSystem.h> #include <mmsystem.h>
typedef HMENU PlatformMenu; // hMenu typedef HMENU PlatformMenu; // hMenu
#define MAX_MENU_COUNT (IDC_LUAMENU_RESERVE_END - IDC_LUAMENU_RESERVE_START + 1) #define MAX_MENU_COUNT (IDC_LUAMENU_RESERVE_END - IDC_LUAMENU_RESERVE_START + 1)

View File

@ -282,7 +282,7 @@ static inline T asmjit_cast(Z* p) { return (T)p; }
// ============================================================================ // ============================================================================
#if defined(ASMJIT_WINDOWS) #if defined(ASMJIT_WINDOWS)
#include <Windows.h> #include <windows.h>
#endif // ASMJIT_WINDOWS #endif // ASMJIT_WINDOWS
#if defined(__APPLE__) #if defined(__APPLE__)