mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-03-04 07:51:11 +00:00
12 lines
227 B
C
Executable file
12 lines
227 B
C
Executable file
// 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);
|
|
|