Skip to content

Commit

Permalink
Changed Windows.h to windows.h.
Browse files Browse the repository at this point in the history
  • Loading branch information
ax-6 committed Aug 5, 2024
1 parent ee49a5b commit 698ebd6
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion aqvm/base/file/identifier/windows/identifier.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include "aqvm/base/file/identifier/windows/identifier.h"

#include <Windows.h>
#include <windows.h>

#include "aqvm/base/hash/hash.h"

Expand Down
2 changes: 1 addition & 1 deletion aqvm/base/file/identifier/windows/identifier.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define AQ_AQVM_BASE_FILE_IDENTIFIER_WINDOWS_IDENTIFIER_H_

#include <stdint.h>
#include <Windows.h>
#include <windows.h>

#include "aqvm/base/file/file.h"

Expand Down
2 changes: 1 addition & 1 deletion aqvm/base/file/windows/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <io.h>
#include <stdio.h>
#include <Windows.h>
#include <windows.h>

#include "aqvm/base/file/file.h"

Expand Down
2 changes: 1 addition & 1 deletion aqvm/base/file/windows/file.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define AQ_AQVM_BASE_FILE_WINDOWS_FILE_H_

#include <stdio.h>
#include <Windows.h>
#include <windows.h>

#include "aqvm/base/file/file.h"

Expand Down
2 changes: 1 addition & 1 deletion aqvm/base/process/file_lock/windows/file_lock.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "aqvm/base/process/file_lock/windows/file_lock.h"

#include <stdio.h>
#include <Windows.h>
#include <windows.h>

#include "aqvm/base/file/windows/file.h"

Expand Down
2 changes: 1 addition & 1 deletion aqvm/base/threading/mutex/windows/mutex.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "aqvm/base/threading/mutex/windows/mutex.h"

#include <stdio.h>
#include <Windows.h>
#include <windows.h>

int AqvmBaseThreadingMutexWindows_InitializeMutex(
AqvmBaseThreadingMutexWindows_Mutex *mutex) {
Expand Down
2 changes: 1 addition & 1 deletion aqvm/base/threading/mutex/windows/mutex.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef AQ_AQVM_BASE_THREADING_MUTEX_WINDOWS_MUTEX_H_
#define AQ_AQVM_BASE_THREADING_MUTEX_WINDOWS_MUTEX_H_

#include <Windows.h>
#include <windows.h>

typedef HANDLE AqvmBaseThreadingMutexWindows_Mutex;

Expand Down
2 changes: 1 addition & 1 deletion aqvm/base/time/windows/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include "aqvm/base/time/windows/time.h"

#include <Windows.h>
#include <windows.h>
#include <time.h>

#include "aqvm/base/logging/logging.h"
Expand Down

0 comments on commit 698ebd6

Please sign in to comment.