Fix for a segfault when calling cybergfx.library/ExtractColor()
[cake.git] / tools / collect-aros / gensets.h
blobc120f94f9e47dfcaeabce1c2a63eb8eeafe66c11
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #ifndef _GENSETS_H_
7 #define _GENSETS_H_
9 #include <stdio.h>
11 typedef struct setnode
13 char *secname;
14 int off_setname;
15 unsigned long pri;
16 struct setnode *next;
17 } setnode;
19 void parse_secname(const char *secname, setnode **setlist_ptr);
20 void emit_sets(setnode *setlist, FILE *out);
22 #endif /* !_GENSETS_H_ */