mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
4bd37e7b64
Doxygen hates the QuakeC-style function prototypes we use, so switch to the C-style prototypes.
22 lines
1 KiB
R
22 lines
1 KiB
R
#include "plist.h"
|
|
|
|
plitem_t PL_GetFromFile (QFile file) = #0;
|
|
plitem_t PL_GetPropertyList (string str) = #0;
|
|
string PL_WritePropertyList (plitem_t pl) = #0;
|
|
pltype_t PL_Type (plitem_t str) = #0;
|
|
string PL_String (plitem_t str) = #0;
|
|
plitem_t PL_ObjectForKey (plitem_t item, string key) = #0;
|
|
plitem_t PL_RemoveObjectForKey (plitem_t item, string key) = #0;
|
|
plitem_t PL_ObjectAtIndex (plitem_t item, integer index) = #0;
|
|
plitem_t PL_D_AllKeys (plitem_t item) = #0;
|
|
integer PL_D_NumKeys (plitem_t item) = #0;
|
|
integer PL_D_AddObject (plitem_t dict, string key, plitem_t value) = #0;
|
|
integer PL_A_AddObject (plitem_t array_item, plitem_t item) = #0;
|
|
integer PL_A_NumObjects (plitem_t item) = #0;
|
|
integer PL_A_InsertObjectAtIndex (plitem_t array_item, plitem_t item, integer index) = #0;
|
|
plitem_t PL_RemoveObjectAtIndex (plitem_t array_item, integer index) = #0;
|
|
plitem_t PL_NewDictionary (void) = #0;
|
|
plitem_t PL_NewArray (void) = #0;
|
|
plitem_t PL_NewData (void []data, integer len) = #0;
|
|
plitem_t PL_NewString (string str) = #0;
|
|
void PL_Free (plitem_t pl) = #0;
|