mirror of
https://github.com/ZDoom/Raze.git
synced 2025-02-07 15:31:11 +00:00
17 lines
290 B
C
17 lines
290 B
C
#ifndef __grpscan_h__
|
|
#define __grpscan_h__
|
|
|
|
// List of internally-known GRP files
|
|
#define numgrpfiles 8
|
|
struct grpfile {
|
|
const char *name;
|
|
int crcval;
|
|
int size;
|
|
int game;
|
|
struct grpfile *next;
|
|
} grpfiles[numgrpfiles], *foundgrps;
|
|
|
|
int ScanGroups(void);
|
|
void FreeGroups(void);
|
|
|
|
#endif
|