4 #include <exec/types.h>
5 #include <libraries/iffparse.h>
6 #include "blockstructure.h"
8 /* Structures used by BNode trees */
15 struct BTreeContainer
{
18 UBYTE nodesize
; /* Must be a multiple of 2 */
20 struct BNode bnode
[0];
23 #define BNODECONTAINER_ID AROS_LONG2BE(MAKE_ID('B','N','D','C'))
25 struct fsBNodeContainer
{
26 struct fsBlockHeader bheader
;
27 struct BTreeContainer btc
;
30 #endif // _BTREENODES_H