diff options
author | Nikias Bassen | 2023-05-20 17:32:34 +0200 |
---|---|---|
committer | Nikias Bassen | 2023-05-20 17:32:34 +0200 |
commit | d772fd74d2a52646c34d558220533547725a2298 (patch) | |
tree | a40b961383d9adb56cedb7b47c85ced35f365869 /include/plist/plist.h | |
parent | 50255a2e2573b1299010cfcf49021f72290219b3 (diff) | |
download | libplist-d772fd74d2a52646c34d558220533547725a2298.tar.gz libplist-d772fd74d2a52646c34d558220533547725a2298.tar.bz2 |
Add an explicit PLIST_FORMAT_NONE value
Diffstat (limited to 'include/plist/plist.h')
-rw-r--r-- | include/plist/plist.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/plist/plist.h b/include/plist/plist.h index 7605975..47eda51 100644 --- a/include/plist/plist.h +++ b/include/plist/plist.h @@ -158,6 +158,7 @@ extern "C" */ typedef enum { + PLIST_FORMAT_NONE = 0, /**< No format */ PLIST_FORMAT_XML = 1, /**< XML format */ PLIST_FORMAT_BINARY = 2, /**< bplist00 format */ PLIST_FORMAT_JSON = 3, /**< JSON format */ |