From 7b21b438b02d8ff14ae079a0734b1a9e51b7c453 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 9 Aug 2012 03:51:27 +0000 Subject: Hide zix symbols (fix static builds with lilv). git-svn-id: http://svn.drobilla.net/sord/trunk@248 3d64ff67-21c5-427c-a301-fe4f08042e5a --- src/zix/common.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/zix/common.h') diff --git a/src/zix/common.h b/src/zix/common.h index e7d35e1..f126cd1 100644 --- a/src/zix/common.h +++ b/src/zix/common.h @@ -36,8 +36,13 @@ # else # define ZIX_API ZIX_LIB_IMPORT # endif +# define ZIX_PRIVATE static +#elif defined(ZIX_INLINE) +# define ZIX_API static inline +# define ZIX_PRIVATE static inline #else # define ZIX_API +# define ZIX_PRIVATE static #endif /** @endcond */ @@ -53,6 +58,8 @@ typedef enum { ZIX_STATUS_NO_MEM, ZIX_STATUS_NOT_FOUND, ZIX_STATUS_EXISTS, + ZIX_STATUS_BAD_ARG, + ZIX_STATUS_BAD_PERMS, } ZixStatus; /** @@ -65,6 +72,11 @@ typedef int (*ZixComparator)(const void* a, const void* b, void* user_data); */ typedef bool (*ZixEqualFunc)(const void* a, const void* b); +/** + Function to destroy an element. +*/ +typedef void (*ZixDestroyFunc)(void* ptr); + /** @} */ -- cgit v1.2.1