mirror of
https://git.wuffs.org/MWCC
synced 2025-12-21 02:39:17 +00:00
finish CLMain.c
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
typedef struct {
|
||||
const char *name;
|
||||
SInt16 rsrcid;
|
||||
const char **strings;
|
||||
Handle strings;
|
||||
} Res;
|
||||
|
||||
static Res rlist[16];
|
||||
@@ -12,7 +12,7 @@ void Res_Initialize() {
|
||||
memset(rlist, 0, sizeof(rlist));
|
||||
}
|
||||
|
||||
int Res_AddResource(const char *name, SInt16 rsrcid, const char **strings) {
|
||||
int Res_AddResource(const char *name, SInt16 rsrcid, Handle strings) {
|
||||
int scan;
|
||||
|
||||
for (scan = 0; scan < 16 && rlist[scan].rsrcid; scan++) {
|
||||
|
||||
Reference in New Issue
Block a user