-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
adaeb68
commit 6edb99b
Showing
22 changed files
with
191 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
rem cd %~dp0 | ||
rem %~d0 | ||
|
||
set PRODUCT_VERSION_VERS=4.5.6.2 | ||
set PRODUCT_VERSION_VERS=4.5.6.5 | ||
|
||
@exit /b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
4.5.6.2 | ||
4.5.6.5 | ||
TRCheatWin | ||
TRCheatWin (x86) : Thu Feb 13 19:04 4.5.6.2 | ||
TRCheatWin (x64) : Thu Feb 13 19:04 4.5.6.2 | ||
TRCheatWin (x86) : Sat Feb 15 09:17 4.5.6.5 | ||
TRCheatWin (x64) : Sat Feb 15 09:17 4.5.6.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.5.06.002 | ||
4.5.06.005 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#include "stdafx.h" | ||
|
||
#include "ExportDataFiles.h" | ||
|
||
|
||
// | ||
///////////////////////////////////////////////////////////////////////////// | ||
// | ||
///////////////////////////////////////////////////////////////////////////// | ||
void ExportDataFiles ( FILE *hOutputFile, const char *pDirectory, int game, TR_MODE TRMode, | ||
const char *pFilespec, const char *pPrefix ) | ||
{ | ||
static char szDirectory [ MAX_PATH ]; | ||
strcpy_s ( szDirectory, sizeof(szDirectory), pDirectory ); | ||
|
||
static char szPathname [ MAX_PATH ]; | ||
strcpy_s ( szPathname, sizeof(szPathname), szDirectory ); | ||
strcat_s ( szPathname, sizeof(szPathname), "\\" ); | ||
strcat_s ( szPathname, sizeof(szPathname), pFilespec ); | ||
|
||
struct _finddata_t fileinfo; | ||
intptr_t handle = _findfirst ( szPathname, &fileinfo ); | ||
if ( handle != -1 ) | ||
{ | ||
int iRes = 0; | ||
do | ||
{ | ||
strcpy_s ( szPathname, sizeof(szPathname), szDirectory ); | ||
strcat_s ( szPathname, sizeof(szPathname), "\\" ); | ||
strcat_s ( szPathname, sizeof(szPathname), fileinfo.name ); | ||
ExtractData ( hOutputFile, game, szPathname, fileinfo.name, TRMode, pPrefix ); | ||
|
||
// | ||
iRes = _findnext ( handle, &fileinfo ); | ||
} | ||
while ( iRes == 0 ); | ||
|
||
_findclose(handle); | ||
} | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#pragma once | ||
|
||
#include <Windows.h> | ||
#include <io.h> | ||
|
||
#include "ReadTRX.h" | ||
|
||
extern void ExportDataFiles ( FILE *hOutputFile, const char *pDirectory, int game, TR_MODE TRMode, | ||
const char *pFilespec, const char *pPrefix ); |
Oops, something went wrong.