Clean up headers a bit, and begin to add the improved image creation

This commit is contained in:
Jaime Thomas
2008-05-19 05:00:55 +00:00
parent 0c369c5033
commit fe6613d7b9
9 changed files with 127 additions and 17 deletions

View File

@ -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