Loading...
Searching...
No Matches
Go to the documentation of this file.
4#if defined _WIN32 || defined __CYGWIN__
5#define KUZU_HELPER_DLL_IMPORT __declspec(dllimport)
6#define KUZU_HELPER_DLL_EXPORT __declspec(dllexport)
7#define KUZU_HELPER_DLL_LOCAL
8#define KUZU_HELPER_DEPRECATED __declspec(deprecated)
10#define KUZU_HELPER_DLL_IMPORT __attribute__((visibility("default")))
11#define KUZU_HELPER_DLL_EXPORT __attribute__((visibility("default")))
12#define KUZU_HELPER_DLL_LOCAL __attribute__((visibility("hidden")))
13#define KUZU_HELPER_DEPRECATED __attribute__((__deprecated__))
16#ifdef KUZU_STATIC_DEFINE
22#define KUZU_API KUZU_HELPER_DLL_EXPORT
25#define KUZU_API KUZU_HELPER_DLL_IMPORT
30#ifndef KUZU_DEPRECATED
31#define KUZU_DEPRECATED KUZU_HELPER_DEPRECATED
34#ifndef KUZU_DEPRECATED_EXPORT
35#define KUZU_DEPRECATED_EXPORT KUZU_API KUZU_DEPRECATED