Lowercase all windows includes such that mingw32 on Linux can find these

This commit is contained in:
Anonymous Maarten 2023-06-15 03:13:14 +02:00
parent 13159fc7ea
commit f25c1b045e
5 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
#ifndef ISLE_H
#define ISLE_H
#include <Windows.h>
#include <windows.h>
#include "mxresult.h"
#include "mxvideoparam.h"

View File

@ -1,5 +1,5 @@
#include <DSOUND.H>
#include <Windows.h>
#include <dsound.h>
#include <windows.h>
#include "define.h"
#include "isle.h"

View File

@ -1,4 +1,4 @@
#include <Windows.h>
#include <windows.h>
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{

View File

@ -1,7 +1,7 @@
#ifndef MXCRITICALSECTION_H
#define MXCRITICALSECTION_H
#include <Windows.h>
#include <windows.h>
class MxCriticalSection
{

View File

@ -1,7 +1,7 @@
#ifndef MXOMNICREATEPARAM_H
#define MXOMNICREATEPARAM_H
#include <Windows.h>
#include <windows.h>
#include "mxomnicreateflags.h"
#include "mxomnicreateparambase.h"