Rev 886 | Rev 1652 | Go to most recent revision | Details | Compare with Previous | 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 |
||
886 | terminx | 5 | #define numgrpfiles 8 |
241 | terminx | 6 | struct grpfile { |
7 | const char *name; |
||
1205 | terminx | 8 | int32_t crcval; |
9 | int32_t size; |
||
10 | int32_t game; |
||
241 | terminx | 11 | struct grpfile *next; |
12 | } grpfiles[numgrpfiles], *foundgrps; |
||
13 | |||
1205 | terminx | 14 | int32_t ScanGroups(void); |
241 | terminx | 15 | void FreeGroups(void); |
16 | |||
17 | #endif |