Skip to content

Commit b3b048c

Browse files
Windows.h replaced with windows.h (#113)
1 parent cdc8178 commit b3b048c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/inc/ze_util.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
///////////////////////////////////////////////////////////////////////////////
1717
#if defined(_WIN32)
18-
# include <Windows.h>
18+
# include <windows.h>
1919
inline void getLastErrorString(std::string &errorValue) {
2020
DWORD errorID = GetLastError();
2121
if (errorID) {

source/layers/tracing/windows/tracing_init.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
*/
88
#include "../tracing_imp.h"
9-
#include <Windows.h>
9+
#include <windows.h>
1010

1111
namespace tracing_layer {
1212
extern "C" BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) {

source/loader/windows/driver_discovery_win.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include "source/loader/driver_discovery.h"
1010

11-
#include <Windows.h>
11+
#include <windows.h>
1212

1313
#include <cassert>
1414
#include <cfgmgr32.h>

0 commit comments

Comments
 (0)