Skip to content

Commit 8a7f64e

Browse files
committed
Use lowercase filename to support compilation on Linux using MinGW.
1 parent d0cf3a2 commit 8a7f64e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MemoryModule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#define POINTER_TYPE DWORD
3636
#endif
3737

38-
#include <Windows.h>
38+
#include <windows.h>
3939
#include <winnt.h>
4040
#ifdef DEBUG_OUTPUT
4141
#include <stdio.h>

MemoryModule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#ifndef __MEMORY_MODULE_HEADER
2828
#define __MEMORY_MODULE_HEADER
2929

30-
#include <Windows.h>
30+
#include <windows.h>
3131

3232
typedef void *HMEMORYMODULE;
3333

0 commit comments

Comments
 (0)