Loading...
Searching...
No Matches
Go to the documentation of this file.
16#ifndef ZITI_SDK_EXTERNS_H
17#define ZITI_SDK_EXTERNS_H
19#if defined(BUILDING_ZITI_SHARED) && defined(USING_ZITI_SHARED)
20#error "Define either BUILDING_ZITI_SHARED or USING_ZITI_SHARED, not both."
26# define ZITI_DEPRECATED(msg) __declspec(deprecated(msg))
27# if defined(BUILDING_ZITI_SHARED)
28# define ZITI_FUNC __declspec(dllexport)
29# elif defined(USING_ZITI_SHARED)
30# define ZITI_FUNC __declspec(dllimport)
35# define ZITI_FUNC __attribute__((visibility("default")))
36# define ZITI_DEPRECATED(msg) __attribute((deprecated((msg))))
39# define ZITI_DEPRECATED(msg)