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:
parent
a21ae4e276
commit
90ac8e2561
3 changed files with 6 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "Random.h"
|
#include "Random.h"
|
||||||
#include "Generator.h"
|
#include "Generator.h"
|
||||||
#include <Time.h>
|
#include <time.h>
|
||||||
|
|
||||||
static const TCHAR szBaseChars[] = _T("BCDFGHJKMPQRTVWXY346789");
|
static const TCHAR szBaseChars[] = _T("BCDFGHJKMPQRTVWXY346789");
|
||||||
static const BYTE base = (sizeof(szBaseChars) / sizeof(TCHAR)) - 1;
|
static const BYTE base = (sizeof(szBaseChars) / sizeof(TCHAR)) - 1;
|
||||||
|
|
|
@ -460,7 +460,7 @@
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\Resource.h"
|
RelativePath=".\resource.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
|
|
|
@ -25,8 +25,8 @@
|
||||||
|
|
||||||
// Windows Header Files:
|
// Windows Header Files:
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <CommCtrl.h>
|
#include <commctrl.h>
|
||||||
#include <Shlwapi.h>
|
#include <shlwapi.h>
|
||||||
|
|
||||||
// C RunTime Header Files
|
// C RunTime Header Files
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
Loading…
Reference in a new issue