mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
d6914ed108
git-svn-id: https://svn.eduke32.com/eduke32@1205 1a8010ca-5511-0410-912e-c29ae57300e0
17 lines
306 B
C
17 lines
306 B
C
#ifndef __grpscan_h__
|
|
#define __grpscan_h__
|
|
|
|
// List of internally-known GRP files
|
|
#define numgrpfiles 8
|
|
struct grpfile {
|
|
const char *name;
|
|
int32_t crcval;
|
|
int32_t size;
|
|
int32_t game;
|
|
struct grpfile *next;
|
|
} grpfiles[numgrpfiles], *foundgrps;
|
|
|
|
int32_t ScanGroups(void);
|
|
void FreeGroups(void);
|
|
|
|
#endif
|