1 /***************************************************************************/
5 /* Generic list support for FreeType (specification). */
7 /* Copyright 1996-2000 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */
16 /***************************************************************************/
19 /*************************************************************************/
21 /* This file implements functions relative to list processing. Its */
22 /* data structures are defined in `freetype.h'. */
24 /*************************************************************************/
30 #include <freetype/freetype.h>
37 FT_EXPORT_DEF( FT_ListNode
) FT_List_Find( FT_List list
,
40 FT_EXPORT_DEF( void ) FT_List_Add( FT_List list
,
43 FT_EXPORT_DEF( void ) FT_List_Insert( FT_List list
,
46 FT_EXPORT_DEF( void ) FT_List_Remove( FT_List list
,
49 FT_EXPORT_DEF( void ) FT_List_Up( FT_List list
,
53 /*************************************************************************/
56 /* FT_List_Iterator */
59 /* An FT_List iterator function which is called during a list parse */
60 /* by FT_List_Iterate(). */
63 /* node :: The current iteration list node. */
65 /* user :: A typeless pointer passed to FT_List_Iterate(). */
66 /* Can be used to point to the iteration's state. */
68 typedef FT_Error (*FT_List_Iterator
)( FT_ListNode node
,
72 FT_EXPORT_DEF( FT_Error
) FT_List_Iterate( FT_List list
,
73 FT_List_Iterator iterator
,
77 /*************************************************************************/
80 /* FT_List_Destructor */
83 /* An FT_List iterator function which is called during a list */
84 /* finalization by FT_List_Finalize() to destroy all elements in a */
88 /* system :: The current system object. */
90 /* data :: The current object to destroy. */
92 /* user :: A typeless pointer passed to FT_List_Iterate(). It can */
93 /* be used to point to the iteration's state. */
95 typedef void (*FT_List_Destructor
)( FT_Memory memory
,
100 FT_EXPORT_DEF( void ) FT_List_Finalize( FT_List list
,
101 FT_List_Destructor destroy
,
110 #endif /* FTLIST_H */