Init builder implementation.

This commit is contained in:
Vreixo Formoso
2007-12-04 22:33:40 +01:00
parent 6616eae76b
commit 14f4aa7d07
5 changed files with 154 additions and 14 deletions

View File

@ -19,6 +19,17 @@ typedef struct Iso_File IsoFile;
typedef struct Iso_Dir_Iter IsoDirIter;
/**
* The type of an IsoNode.
*/
enum IsoNodeType {
LIBISO_DIR,
LIBISO_FILE,
LIBISO_SYMLINK,
LIBISO_SPECIAL,
LIBISO_BOOT
};
/**
* Create a new image, empty.
*