diff options
author | Kyle K <kylek389@gmail.com> | 2015-04-15 04:38:04 -0500 |
---|---|---|
committer | Kyle K <kylek389@gmail.com> | 2015-04-15 04:38:04 -0500 |
commit | 70cb6d01b478fbb1cfa2741553f35e6d8da4042d (patch) | |
tree | e51c5f11bb2aa58b8e7a1f8a090ecc96eebc58a7 /stdafx.h | |
parent | 9dc9b87417acf5c26df8f1cb3034fe1e350080e6 (diff) | |
download | TXRExtractor-70cb6d01b478fbb1cfa2741553f35e6d8da4042d.tar.gz TXRExtractor-70cb6d01b478fbb1cfa2741553f35e6d8da4042d.tar.bz2 TXRExtractor-70cb6d01b478fbb1cfa2741553f35e6d8da4042d.zip |
initial commit
1st commit after 3 hard weeks of staring at hex editor. At this time
WMN.DAT archive from Wangan Midnight is extractable.
Diffstat (limited to 'stdafx.h')
-rw-r--r-- | stdafx.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/stdafx.h b/stdafx.h new file mode 100644 index 0000000..99add25 --- /dev/null +++ b/stdafx.h @@ -0,0 +1,18 @@ +// stdafx.h : include file for standard system include files,
+// or project specific include files that are used frequently, but
+// are changed infrequently
+//
+
+#define _CRT_SECURE_NO_WARNINGS
+#pragma once
+
+#include "targetver.h"
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <tchar.h>
+#include <direct.h>
+#include <string.h>
+
+
+// TODO: reference additional headers your program requires here
|