2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
6 #include "iffparse_intern.h"
8 /*****************************************************************************
11 #include <proto/iffparse.h>
13 AROS_LH1(struct ContextNode
*, CurrentChunk
,
16 AROS_LHA(struct IFFHandle
*, iff
, A0
),
19 struct Library
*, IFFParseBase
, 29, IFFParse
)
22 Returns the top context node for the give IFFHandle struct.
23 The top contexte is the node most recently pushed onto the
27 iff - pointer to IFFHandle struct.
30 top - Pointer to top contextnode or NULL if none.
39 PushChunk(), PopChunk(), ParseIFF(), ParentChunk()
42 " .. or NULL if none" (see RESULT) is truth with slight modifications,
43 since the default context node exists as long as the iffhandle
44 itself. However, the user is never given a pointer to this node.
46 *****************************************************************************/
50 struct ContextNode
*cn
;
57 /* If iffhandle is not opened yet, ther will be no contextnodes */