Loading...
Searching...
No Matches
Go to the documentation of this file.
8#ifndef __ULTRALIGHT_EXPORTS_H__
9#define __ULTRALIGHT_EXPORTS_H__
11#if defined(__WIN32__) || defined(_WIN32)
12# if defined(ULTRALIGHT_STATIC_BUILD)
15# if defined(ULTRALIGHT_IMPLEMENTATION)
16# define UExport __declspec(dllexport)
18# define UExport __declspec(dllimport)
22# if defined(ULTRALIGHT_STATIC_BUILD)
25# define UExport __attribute__((visibility("default")))
30#if defined(__WIN32__) || defined(_WIN32)
31# if defined(ULTRALIGHT_STATIC_BUILD)
34# if defined(ULTRALIGHT_IMPLEMENTATION) && defined(ULTRALIGHT_MODULE_ULTRALIGHTCORE)
35# define UCExport __declspec(dllexport)
37# define UCExport __declspec(dllimport)
41# if defined(ULTRALIGHT_STATIC_BUILD)
44# define UCExport __attribute__((visibility("default")))