mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
13 lines
227 B
C
13 lines
227 B
C
|
// List of internally-known GRP files
|
||
|
#define numgrpfiles 6
|
||
|
struct grpfile {
|
||
|
const char *name;
|
||
|
int crcval;
|
||
|
int size;
|
||
|
struct grpfile *next;
|
||
|
} grpfiles[numgrpfiles], *foundgrps;
|
||
|
|
||
|
int ScanGroups(void);
|
||
|
void FreeGroups(void);
|
||
|
|