Normalize external includes to lowercase filenames

Also remove leading case of resource.h in the vcproj, since it's all lowercase
on the filesystem, and everything else refers to it like that.
This commit is contained in:
Will 2024-03-24 18:26:11 -07:00
parent a21ae4e276
commit 90ac8e2561
3 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
#include "stdafx.h"
#include "Random.h"
#include "Generator.h"
#include <Time.h>
#include <time.h>
static const TCHAR szBaseChars[] = _T("BCDFGHJKMPQRTVWXY346789");
static const BYTE base = (sizeof(szBaseChars) / sizeof(TCHAR)) - 1;
@ -113,4 +113,4 @@ GenerateKey(LPCTSTR szInput,
*szPtr = 0;
return TRUE;
}
}

View file

@ -460,7 +460,7 @@
>
</File>
<File
RelativePath=".\Resource.h"
RelativePath=".\resource.h"
>
</File>
<File

View file

@ -25,11 +25,11 @@
// Windows Header Files:
#include <windows.h>
#include <CommCtrl.h>
#include <Shlwapi.h>
#include <commctrl.h>
#include <shlwapi.h>
// C RunTime Header Files
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <tchar.h>
#include <tchar.h>