forked from strazzere/010Editor-stuff
-
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
Showing
1 changed file
with
25 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
//-------------------------------------- | ||
//--- 010 Editor v6.0.2 Binary Template | ||
// | ||
// File: CrisisTemplate.pt | ||
// Author: Tim 'Diff' Strazzere <[email protected]> <[email protected]> | ||
// Revision: 1.0 | ||
// Purpose: For quick parameter parsing of Crisis binaries. Will start the | ||
// template where the current cursor is in the file. | ||
//-------------------------------------- | ||
|
||
|
||
typedef struct { | ||
uint32 version; | ||
char build[16]; | ||
char subtype[16]; | ||
unsigned char evidencekey[32]; | ||
unsigned char confkey[32]; | ||
unsigned char signature[32]; | ||
unsigned char watermark[32]; | ||
unsigned char demo[24]; | ||
unsigned char info[256]; | ||
} Crisis_params; | ||
|
||
FSeek(GetCursorPos()); | ||
Crisis_params params; |