Home | History | Annotate | Download | only in info

Lines Matching defs:REFERENCE

32 /* Structure which describes a node reference, such as a menu entry or
33 cross reference. Arrays of such references can be built by calling
41 } REFERENCE;
62 /* Return a NULL terminated array of REFERENCE * which represents the menu
64 extern REFERENCE **info_menu_of_node (NODE *node);
66 /* Return a NULL terminated array of REFERENCE * which represents the cross
69 extern REFERENCE **info_xrefs_of_node (NODE *node);
72 BINDING->end. Return an array of REFERENCE * that represents each
73 cross reference in this range. */
74 extern REFERENCE **info_xrefs (SEARCH_BINDING *binding);
77 the reference if found, or NULL. */
78 extern REFERENCE *info_get_labeled_reference (char *label,
79 REFERENCE **references);
83 of REFERENCE * that represents each menu item in this range. */
84 extern REFERENCE **info_menu_items (SEARCH_BINDING *binding);
86 /* A utility function for concatenating REFERENCE **. Returns a new
87 REFERENCE ** which is the concatenation of REF1 and REF2. The REF1
89 REFERENCE **info_concatenate_references (REFERENCE **ref1, REFERENCE **ref2);
91 /* Copy an existing reference into new memory. */
92 extern REFERENCE *info_copy_reference (REFERENCE *src);
95 extern void info_free_references (REFERENCE **references);