Skip to content

Commit 76e70b7

Browse files
committed
Normalize PATCHGET file extensions to lowercase
1 parent e114e0c commit 76e70b7

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include "gamespy/ghttp/ghttp.h"
2525
#include "DownloadManager.h"
2626

27-
#include "CHATAPI.H"
27+
#include "CHATAPI.h"
2828

2929
//#include "api/wolapi_i.c" // This should only be in one .cpp file
3030
#include <objbase.h>
@@ -34,8 +34,8 @@
3434
#if defined(_MSC_VER) && _MSC_VER < 1300
3535
#include <mapicode.h>
3636
#endif
37-
#include "RESOURCE.H"
38-
#include "WINBLOWS.H"
37+
#include "RESOURCE.h"
38+
#include "WINBLOWS.h"
3939
#include <crtdbg.h>
4040
#include "process.h"
4141
#include "WWDownload/Registry.h"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#pragma once
2020

21-
#include "COMINIT.H"
21+
#include "COMINIT.h"
2222
#include <stdio.h>
2323
#include <windows.h>
2424
#include <commctrl.h>

Core/Tools/PATCHGET/CMakeLists.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
set(PATCHGET_SRC
2-
"CHATAPI.CPP"
3-
"CHATAPI.H"
4-
"COMINIT.CPP"
5-
"COMINIT.H"
2+
"CHATAPI.cpp"
3+
"CHATAPI.h"
4+
"COMINIT.cpp"
5+
"COMINIT.h"
66
"debug.cpp"
77
"debug.h"
88
"DownloadManager.cpp"
99
"DownloadManager.h"
10-
"PROCESS.CPP"
11-
"PROCESS.H"
10+
"PROCESS.cpp"
11+
"PROCESS.h"
1212
"registry.cpp"
1313
"Registry.h"
14-
"RESOURCE.H"
15-
"WINBLOWS.CPP"
16-
"WINBLOWS.H"
17-
"WSTYPES.H"
14+
"RESOURCE.h"
15+
"WINBLOWS.cpp"
16+
"WINBLOWS.h"
17+
"WSTYPES.h"
1818
)
1919

2020
add_library(corei_patchgrabber INTERFACE)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
//
2020
// If you link with this it will automatically call the COM initialization stuff
2121
//
22-
#include "COMINIT.H"
22+
#include "COMINIT.h"
2323
#include <stdlib.h>
2424
#include <stdio.h>
2525
#include <windows.h>

Core/Tools/PATCHGET/DownloadManager.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
// Author: Matthew D. Campbell, July 2002
2222

2323
#include "debug.h"
24-
#include "CHATAPI.H"
24+
#include "CHATAPI.h"
2525
#include "DownloadManager.h"
26-
#include "RESOURCE.H"
26+
#include "RESOURCE.h"
2727

2828
namespace patchget
2929
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#pragma once
2020

2121
#include <windows.h>
22-
#include "WSTYPES.H"
22+
#include "WSTYPES.h"
2323

2424
namespace patchget
2525
{
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
#include <stdio.h>
2424
#include <stdarg.h>
2525

26-
#include "WINBLOWS.H"
27-
#include "CHATAPI.H"
26+
#include "WINBLOWS.h"
27+
#include "CHATAPI.h"
2828

2929

3030
// TheSuperHackers @fix xezon 13/03/2025 Fix debug linker errors by

0 commit comments

Comments
 (0)