Clean up headers a bit, and begin to add the improved image creation
This commit is contained in:
@ -111,4 +111,17 @@ struct _Ecdb_Erase_Project
|
||||
/* Typecast a pointer to an Ecdb_Erase_Project */
|
||||
#define ECDB_ERASE(proj) ((Ecdb_Erase_Project *) proj)
|
||||
|
||||
/* Typecast a pointer to an Ecdb_Source */
|
||||
#define ECDB_SOURCE(src) ((Ecdb_Source *) src)
|
||||
|
||||
typedef struct _Ecdb_Source Ecdb_Source;
|
||||
struct _Ecdb_Source
|
||||
{
|
||||
const char *dst;
|
||||
unsigned char rec:1;
|
||||
unsigned char num_children;
|
||||
Ecdb_Source **children;
|
||||
IsoNode *node;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user