mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-23 03:41:02 +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 <stdio.h>
|
||||
#include <string.h>
|
||||
#include <SDKDDKVer.h>
|
||||
#include <Windows.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;
|
||||
if(fileArg == argc) {
|
||||
PrintUsage();
|
||||
|
|
Loading…
Reference in a new issue