Rev 337 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
241 | terminx | 1 | #ifndef __grpscan_h__ |
2 | #define __grpscan_h__ |
||
3 | |||
4 | // List of internally-known GRP files |
||
5 | #define numgrpfiles 7 |
||
6 | struct grpfile { |
||
7 | const char *name; |
||
8 | int crcval; |
||
9 | int size; |
||
10 | int game; |
||
11 | struct grpfile *next; |
||
12 | } grpfiles[numgrpfiles], *foundgrps; |
||
13 | |||
14 | int ScanGroups(void); |
||
15 | void FreeGroups(void); |
||
16 | |||
17 | #endif |