Handle reallocation of directories.

This commit is contained in:
Vreixo Formoso
2007-12-23 17:11:32 +01:00
parent ca1385cce1
commit 041858360a
5 changed files with 154 additions and 3 deletions

View File

@ -47,11 +47,13 @@ struct ecma119_node
IsoNode *node; /*< reference to the iso node */
/**< file, symlink, directory or placeholder */
/**< file, symlink, special, directory or placeholder */
enum ecma119_node_type type;
union {
IsoFileSrc *file;
struct ecma119_dir_info dir;
/** this field points to the relocated directory. */
Ecma119Node *real_me;
} info;
};