Functions to add and get a node inside a dir.

This commit is contained in:
Vreixo Formoso
2007-12-01 01:42:21 +01:00
parent 3c7f1285d6
commit a4f283fac6
6 changed files with 303 additions and 3 deletions

View File

@ -69,7 +69,7 @@ struct Iso_Node
int hidden; /**< whether the node will be hidden, see IsoHideNodeFlag */
struct IsoDir *parent; /**< parent node, NULL for root */
IsoDir *parent; /**< parent node, NULL for root */
/*
* Pointers to the doubled linked list of children in a dir.
@ -85,7 +85,7 @@ struct Iso_Dir
IsoNode node;
size_t nchildren; /**< The number of children of this directory. */
struct IsoNode *children; /**< list of children. ptr to first child */
IsoNode *children; /**< list of children. ptr to first child */
};
struct Iso_File