Skip to content

Commit 226a3e2

Browse files
committed
Normalize Autorun file extensions to lowercase
1 parent 76e70b7 commit 226a3e2

File tree

14 files changed

+28
-28
lines changed

14 files changed

+28
-28
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#include <stdio.h>
4141
#include <string.h>
4242

43-
#include "ARGS.H"
43+
#include "ARGS.h"
4444

4545
//-----------------------------------------------------------------------------
4646
// GLOBALS
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
6262

6363
#include "assert.h"
64-
#include "CDCNTRL.H"
65-
#include "WinFix.H"
64+
#include "CDCNTRL.h"
65+
#include "WinFix.h"
6666
#include "Wnd_File.h"
6767
#pragma warning(disable : 4201)
6868
#include <winioctl.h>

Core/Tools/Autorun/CMakeLists.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
set(AUTORUN_SRC
2-
"ARGS.CPP"
3-
"ARGS.H"
2+
"ARGS.cpp"
3+
"ARGS.h"
44
"autorun.cpp"
55
"autorun.h"
66
"CallbackHook.h"
7-
"CDCNTRL.CPP"
8-
"CDCNTRL.H"
7+
"CDCNTRL.cpp"
8+
"CDCNTRL.h"
99
"DrawButton.cpp"
1010
"DrawButton.h"
1111
"EZGIMEX.cpp"
1212
"GameText.cpp"
1313
"GameText.h"
14-
"GETCD.CPP"
14+
"GETCD.cpp"
1515
"GetCD.h"
1616
"gimex.h"
1717
"IGR.cpp"
1818
"IGR.h"
1919
"Jsupport.cpp"
20-
"JSUPPORT.H"
20+
"JSUPPORT.h"
2121
"leanAndMeanAutorun.h"
2222
"Locale_API.cpp"
2323
"Locale_API.h"
@@ -32,8 +32,8 @@ set(AUTORUN_SRC
3232
"Utils.h"
3333
"ViewHTML.cpp"
3434
"ViewHTML.h"
35-
"WinFix.CPP"
36-
"WinFix.H"
35+
"WinFix.cpp"
36+
"WinFix.h"
3737
"Wnd_file.cpp"
3838
"Wnd_File.h"
3939
"WSYS_File.cpp"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
//#include "timer.h"
3838
#include "Wnd_File.h"
3939
//#include "missiondisk.h"
40-
#include "WinFix.H"
40+
#include "WinFix.h"
4141

4242
#ifndef ROR_NOT_READY
4343
#define ROR_NOT_READY 21

Core/Tools/Autorun/Jsupport.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
// DBCS Support Codes
2121

2222
#include <windows.h>
23-
#include "JSUPPORT.H"
23+
#include "JSUPPORT.h"
2424

25-
// 前置禁則文字
25+
// �O�u�֑�����
2626
// Can't set these characters on top of line
2727
static BOOL IsDBCSInvalidAtTop(unsigned int c)
2828
{
29-
static BYTE * dtbl = (BYTE *)"¢°’”‰′″℃、。々〉》」』】〕ぁぃぅぇぉっゃゅょゎ゛゜ゝゞァィゥェォッャュョヮヵヶ・ーヽヾ!%),.:;?]}";
30-
static BYTE * stbl = (BYTE *)"!%),.:;?]}。」、・゙゚";
29+
static BYTE * dtbl = (BYTE *)"�����f�h�񁌁����A�B�X�r�t�v�x�z�l�����������������J�K�T�U�@�B�D�F�H�b�������������E�[�R�S�I���j�C�D�F�G�H�n�p";
30+
static BYTE * stbl = (BYTE *)"!%),.:;?]}������";
3131

3232
if(c<0x100)
3333
{
@@ -50,12 +50,12 @@ static BOOL IsDBCSInvalidAtTop(unsigned int c)
5050
return FALSE;
5151
}
5252

53-
// 後置禁則文字
53+
// ��u�֑�����
5454
// Can't set these characters on end of line
5555
static BOOL IsDBCSInvalidAtEnd( unsigned int c )
5656
{
57-
static BYTE * dtbl = (BYTE *)"‘“〈《「『【〔([{$£¥";
58-
static BYTE * stbl = (BYTE *)"({[";
57+
static BYTE * dtbl = (BYTE *)"�e�g�q�s�u�w�y�k�i�m�o������";
58+
static BYTE * stbl = (BYTE *)"({[";
5959

6060
if(c<0x100)
6161
{

Core/Tools/Autorun/TTFont.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@
5252
#include <assert.h>
5353
#include <ctype.h>
5454
#include <stdlib.h>
55-
#include "ARGS.H"
55+
#include "ARGS.h"
5656
#include "autorun.h"
5757
#include "RECT.h"
5858
#include "Wnd_File.h"
5959
#include "TTFont.h"
60-
#include "JSUPPORT.H" // [OYO]
60+
#include "JSUPPORT.h" // [OYO]
6161
#include "Locale_API.h"
6262

6363

Core/Tools/Autorun/Utils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@
6969
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/
7070

7171
#include <io.h>
72-
#include "ARGS.H"
72+
#include "ARGS.h"
7373
#include "assert.h"
7474
#include "Locale_API.h"
7575
#include "resource.h"
7676
#include "Utils.h"
77-
#include "WinFix.H"
77+
#include "WinFix.h"
7878
#include "Wnd_File.h"
7979
#include <winver.h>
8080
#include <shlwapi.h>

0 commit comments

Comments
 (0)