mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
doxygen didn't like that construct
This commit is contained in:
parent
3ad2eaf3cd
commit
808baf2198
1 changed files with 23 additions and 8 deletions
|
@ -155,27 +155,42 @@ plitem_t *PL_ObjectAtIndex (plitem_t *, int);
|
|||
*/
|
||||
plitem_t *PL_D_AllKeys (plitem_t *);
|
||||
|
||||
//@{
|
||||
/**
|
||||
\fn qboolean PL_D_AddObject (plitem_t *dict, plitem_t *key, plitem_t *value)
|
||||
\fn qboolean PL_A_AddObject (plitem_t *array, plitem_t *item)
|
||||
\fn qboolean PL_A_InsertObjectAtIndex (plitem_t *array, plitem_t *item, int index)
|
||||
|
||||
\param array The array to add the item to
|
||||
\param dict The dictionary to add the key/value pair to
|
||||
\param item The item to be added to the array
|
||||
\param index The location at which to insert the item into the array
|
||||
\param key The key of the key/value pair to be added to the dictionary
|
||||
\param value The value of the key/value pair to be added to the dictionary
|
||||
|
||||
\return true on success, false on failure
|
||||
|
||||
Note: the dictionary or array becomes the owner of the added item/pair.
|
||||
Note: the dictionary becomes the owner of both the key and
|
||||
the value.
|
||||
*/
|
||||
qboolean PL_D_AddObject (plitem_t *, plitem_t *, plitem_t *);
|
||||
|
||||
/**
|
||||
\fn qboolean PL_A_AddObject (plitem_t *array, plitem_t *item)
|
||||
\param array The array to add the item to
|
||||
\param item The item to be added to the array
|
||||
|
||||
\return true on success, false on failure
|
||||
|
||||
Note: the array becomes the owner of the added item.
|
||||
*/
|
||||
qboolean PL_A_AddObject (plitem_t *, plitem_t *);
|
||||
|
||||
/**
|
||||
\fn qboolean PL_A_InsertObjectAtIndex (plitem_t *array, plitem_t *item, int index)
|
||||
\param array The array to add the item to
|
||||
\param item The item to be added to the array
|
||||
\param index The location at which to insert the item into the array
|
||||
|
||||
\return true on success, false on failure
|
||||
|
||||
Note: the array becomes the owner of the added item.
|
||||
*/
|
||||
qboolean PL_A_InsertObjectAtIndex (plitem_t *, plitem_t *, int);
|
||||
//@}
|
||||
|
||||
plitem_t *PL_NewDictionary (void);
|
||||
plitem_t *PL_NewArray (void);
|
||||
|
|
Loading…
Reference in a new issue