浏览代码

Use lowercase "windows.h" instead of "Windows.h"

Fixes #1165

While the Microsoft documentation uses "Windows.h" some other source files already use "windows.h".
bel2125 2 年之前
父节点
当前提交
c1cf4be2d3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/civetweb.c

+ 1 - 1
src/civetweb.c

@@ -525,7 +525,7 @@ mg_static_assert(sizeof(size_t) == 4 || sizeof(size_t) == 8,
 
 
 
 
 #if defined(_WIN32) /* WINDOWS include block */
 #if defined(_WIN32) /* WINDOWS include block */
-#include <Windows.h>
+#include <windows.h>
 #include <malloc.h>   /* *alloc( */
 #include <malloc.h>   /* *alloc( */
 #include <stdlib.h>   /* *alloc( */
 #include <stdlib.h>   /* *alloc( */
 #include <time.h>     /* struct timespec */
 #include <time.h>     /* struct timespec */