diff options
author | David Robillard <d@drobilla.net> | 2011-09-05 15:56:02 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-09-05 15:56:02 +0000 |
commit | 9c129fa5ca61da479507d2598951f3fdacc1e143 (patch) | |
tree | c554b3df4a781bf4ea2fc39abea75862b0f6ad19 /zix/common.h | |
parent | a54b3fcd7b73411f9decc82ebf7ddb906e13052b (diff) | |
download | zix-9c129fa5ca61da479507d2598951f3fdacc1e143.tar.gz zix-9c129fa5ca61da479507d2598951f3fdacc1e143.tar.bz2 zix-9c129fa5ca61da479507d2598951f3fdacc1e143.zip |
Separate tree functions into a separate header. Add tree iterator functions.
git-svn-id: http://svn.drobilla.net/zix/trunk@2 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
Diffstat (limited to 'zix/common.h')
-rw-r--r-- | zix/common.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/zix/common.h b/zix/common.h new file mode 100644 index 0000000..dd86a8b --- /dev/null +++ b/zix/common.h @@ -0,0 +1,54 @@ +/* + Copyright 2011 David Robillard <http://drobilla.net> + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +*/ + +#ifndef ZIX_COMMON_H +#define ZIX_COMMON_H + +/** + @addtogroup zix + @{ +*/ + +#ifdef ZIX_SHARED +# ifdef __WIN32__ +# define ZIX_LIB_IMPORT __declspec(dllimport) +# define ZIX_LIB_EXPORT __declspec(dllexport) +# else +# define ZIX_LIB_IMPORT __attribute__((visibility("default"))) +# define ZIX_LIB_EXPORT __attribute__((visibility("default"))) +# endif +# ifdef ZIX_INTERNAL +# define ZIX_API ZIX_LIB_EXPORT +# else +# define ZIX_API ZIX_LIB_IMPORT +# endif +#else +# define ZIX_API +#endif + +typedef enum { + ZIX_STATUS_SUCCESS, + ZIX_STATUS_ERROR, + ZIX_STATUS_NO_MEM, + ZIX_STATUS_NOT_FOUND, + ZIX_STATUS_EXISTS, +} ZixStatus; + +/** + @} +*/ + +#endif /* ZIX_COMMON_H */ |