From 6b719ecda2072dafeb98a44a6f4eac247748efc0 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 19 Mar 2014 02:32:57 +0100 Subject: deprecated plist_dict_insert_item in favor of plist_dict_set_item --- include/plist/plist.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'include/plist/plist.h') diff --git a/include/plist/plist.h b/include/plist/plist.h index b482199..4dd76a6 100644 --- a/include/plist/plist.h +++ b/include/plist/plist.h @@ -44,9 +44,17 @@ extern "C" #else #define PLIST_API __declspec( dllimport ) #endif +#define DEPRECATED(x) __declspec(deprecated(x)) #else #include #define PLIST_API +#ifdef __GNUC__ +#define DEPRECATED(x) __attribute__((deprecated(x))) +#elif defined(_MSC_VER) +#else +#define DEPRECATED(x) +#pragma message("WARNING: You need to implement DEPRECATED for this compiler") +#endif #endif #include @@ -322,11 +330,13 @@ extern "C" /** * Insert a new item into a #PLIST_DICT node. * + * @deprecated Deprecated. Use plist_dict_set_item instead. + * * @param node the node of type #PLIST_DICT * @param item the new item to insert * @param key The identifier of the item to insert. */ - PLIST_API void plist_dict_insert_item(plist_t node, const char* key, plist_t item); + DEPRECATED("use plist_dict_set_item instead") PLIST_API void plist_dict_insert_item(plist_t node, const char* key, plist_t item); /** * Remove an existing position in a #PLIST_DICT node. -- cgit v1.1-32-gdbae