]> icculus.org git repositories - taylor/freespace2.git/blob - include/scramble.h
Initial revision
[taylor/freespace2.git] / include / scramble.h
1 /*
2  * $Logfile: /freespace2/code/Scramble/scramble.h $
3  * $Revision$
4  * $Date$
5  * $Author$
6  *
7  * Header file for file scrambler
8  *
9  * $Log$
10  * Revision 1.1  2002/05/03 03:28:12  root
11  * Initial revision
12  *
13  * 
14  * 2     10/24/98 11:41p Dave
15  * 
16  * 1     10/24/98 11:31p Dave
17  * 
18  * 4     4/14/98 1:39p Lawrance
19  * Add command line switches to preprocess ship and weapon tables
20  * 
21  * 3     3/31/98 1:14a Lawrance
22  * Get .tbl and mission file encryption working.
23  * 
24  * 2     3/30/98 5:51p Lawrance
25  * file encryption and decryption
26  * 
27  * 1     3/30/98 5:19p Lawrance
28  *
29  * $NoKeywords: $
30  */
31
32 #ifndef __SCRAMBLE_H__
33 #define __SCRAMBLE_H__
34
35 #define PREPROCESS_SHIPS_TBL                    0
36 #define PREPROCESS_WEAPONS_TBL          1
37
38 void scramble_file(char *src_filename, char *dest_filename = NULL, int preprocess = -1);
39 void unscramble_file(char *src_filename, char *dest_filename = NULL);
40
41 #endif
42