mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-02-02 15:11:10 +00:00
Add the correct hooks to compile as a win32 console app.
This commit is contained in:
parent
8761821220
commit
cb126c40ce
|
@ -1,6 +1,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <SDKDDKVer.h>
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
|
|
||||||
#include "BlockStats.h"
|
#include "BlockStats.h"
|
||||||
|
@ -26,9 +27,9 @@ void ExtractBasename(const char *filename, char *buf, uint32 bufSz) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int _tmain(int argc, _TCHAR* argv[])
|
||||||
|
{
|
||||||
int fileArg = 1;
|
int fileArg = 1;
|
||||||
if(fileArg == argc) {
|
if(fileArg == argc) {
|
||||||
PrintUsage();
|
PrintUsage();
|
||||||
|
|
Loading…
Reference in a new issue