1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-03-24 21:53:31 +01:00

Added old libPropList compatibility through proplist-compat.h

This commit is contained in:
dan
2001-10-03 02:05:53 +00:00
parent 558d0fbd14
commit 8bb50a6320
4 changed files with 181 additions and 107 deletions

View File

@@ -757,6 +757,10 @@ WMPropList* WMCreatePLArray(WMPropList *elem, ...);
WMPropList* WMCreatePLDictionary(WMPropList *key, WMPropList *value, ...);
WMPropList* WMRetainPropList(WMPropList *plist);
void WMReleasePropList(WMPropList *plist);
void WMInsertInPLArray(WMPropList *plist, int index, WMPropList *item);
void WMAddToPLArray(WMPropList *plist, WMPropList *item);
@@ -771,9 +775,7 @@ void WMRemoveFromPLDictionary(WMPropList *plist, WMPropList *key);
WMPropList* WMMergePLDictionaries(WMPropList *dest, WMPropList *source);
WMPropList* WMRetainPropList(WMPropList *plist);
void WMReleasePropList(WMPropList *plist);
int WMGetPropListItemCount(WMPropList *plist);
Bool WMIsPLString(WMPropList *plist);
@@ -785,8 +787,6 @@ Bool WMIsPLDictionary(WMPropList *plist);
Bool WMIsPropListEqualTo(WMPropList *plist, WMPropList *other);
int WMGetPropListItemCount(WMPropList *plist);
char* WMGetFromPLString(WMPropList *plist);
WMData* WMGetFromPLData(WMPropList *plist);
@@ -805,10 +805,10 @@ WMPropList* WMShallowCopyPropList(WMPropList *plist);
WMPropList* WMDeepCopyPropList(WMPropList *plist);
char* WMGetPropListDescription(WMPropList *plist, Bool indented);
WMPropList* WMCreatePropListFromDescription(char *desc);
char* WMGetPropListDescription(WMPropList *plist, Bool indented);
WMPropList* WMReadPropListFromFile(char *file);
Bool WMWritePropListToFile(WMPropList *plist, char *path, Bool atomically);