diff options
author | Jonathan Beck | 2008-12-10 23:22:12 +0100 |
---|---|---|
committer | Jonathan Beck | 2008-12-10 23:22:12 +0100 |
commit | 625633203a27f569bea8890cb269132fea83b497 (patch) | |
tree | 884d6e4855755ffc1986f661985dc6fa3b81c221 /src/plist.h | |
parent | 1a06347d27ca51283de3a9ff21e138a3ea9ba9b6 (diff) | |
download | libplist-625633203a27f569bea8890cb269132fea83b497.tar.gz libplist-625633203a27f569bea8890cb269132fea83b497.tar.bz2 |
add bplist writting capability.
Diffstat (limited to 'src/plist.h')
-rw-r--r-- | src/plist.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/plist.h b/src/plist.h index df1d3e4..63f67f7 100644 --- a/src/plist.h +++ b/src/plist.h @@ -33,28 +33,6 @@ char *format_string(const char *buf, int cols, int depth); -/* Binary plist stuff */ - -/* -typedef enum { - PLIST_BOOLEAN, - PLIST_UINT8, - PLIST_UINT16, - PLIST_UINT32, - PLIST_UINT64, - PLIST_FLOAT32, - PLIST_FLOAT64, - PLIST_STRING, - PLIST_UNICODE, - PLIST_ARRAY, - PLIST_DICT, - PLIST_DATE, - PLIST_DATA, - PLIST_PLIST, - PLIST_KEY, -} plist_type; -*/ - typedef enum { PLIST_BOOLEAN, PLIST_UINT, @@ -65,7 +43,6 @@ typedef enum { PLIST_DICT, PLIST_DATE, PLIST_DATA, - PLIST_PLIST, PLIST_KEY, } plist_type; |