quakeforge/ruamoko/include/plist.h
Bill Currie 8f87407133 [ruamoko] Add wrappers for the new plist functions
With both file and string versions (as per PL_GetPropertyList).
2023-03-12 14:35:17 +09:00

36 lines
1.6 KiB
C

#ifndef __ruamoko_plist_h
#define __ruamoko_plist_h
#include <qfile.h>
typedef struct plitem_s plitem_t;
typedef enum {QFDictionary, QFArray, QFBinary, QFString} pltype_t; // possible types
@extern plitem_t *PL_GetFromFile (QFile file);
@extern plitem_t *PL_GetPropertyList (string str);
@extern plitem_t *PL_GetDictionaryFromFile (QFile file);
@extern plitem_t *PL_GetDictionary (string str);
@extern plitem_t *PL_GetArrayFromFile (QFile file);
@extern plitem_t *PL_GetArray (string str);
@extern string PL_WritePropertyList (plitem_t *pl);
@extern pltype_t PL_Type (plitem_t *str);
@extern int PL_Line (plitem_t *str);
@extern string PL_String (plitem_t *str);
@extern plitem_t *PL_ObjectForKey (plitem_t *item, string key);
@extern plitem_t *PL_RemoveObjectForKey (plitem_t *item, string key);
@extern plitem_t *PL_ObjectAtIndex (plitem_t *item, int index);
@extern plitem_t *PL_D_AllKeys (plitem_t *item);
@extern string PL_KeyAtIndex (plitem_t *item, int index);
@extern int PL_D_NumKeys (plitem_t *item);
@extern int PL_D_AddObject (plitem_t *dict, string key, plitem_t *value);
@extern int PL_A_AddObject (plitem_t *array_item, plitem_t *item);
@extern int PL_A_NumObjects (plitem_t *item);
@extern int PL_A_InsertObjectAtIndex (plitem_t *array_item, plitem_t *item, int index);
@extern plitem_t *PL_RemoveObjectAtIndex (plitem_t *array_item, int index);
@extern plitem_t *PL_NewDictionary ();
@extern plitem_t *PL_NewArray ();
@extern plitem_t *PL_NewData (void *data, int len);
@extern plitem_t *PL_NewString (string str);
@extern void PL_Free (plitem_t *pl);
#endif//__ruamoko_plist_h