forked from hell-labs/keygendr32
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 "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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -460,7 +460,7 @@
|
|||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Resource.h"
|
||||
RelativePath=".\resource.h"
|
||||
>
|
||||
</File>
|
||||
<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>
|
||||
|
|
Loading…
Reference in a new issue