mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 20:03:08 +09:00
18 lines
499 B
C
18 lines
499 B
C
#ifndef _HUNSPELL_VISIBILITY_H_
|
|
#define _HUNSPELL_VISIBILITY_H_
|
|
|
|
#if defined(HUNSPELL_STATIC)
|
|
# define LIBHUNSPELL_DLL_EXPORTED
|
|
#elif defined(_MSC_VER)
|
|
# if defined(BUILDING_LIBHUNSPELL)
|
|
# define LIBHUNSPELL_DLL_EXPORTED __declspec(dllexport)
|
|
# else
|
|
# define LIBHUNSPELL_DLL_EXPORTED __declspec(dllimport)
|
|
# endif
|
|
#elif defined(BUILDING_LIBHUNSPELL) && 1
|
|
# define LIBHUNSPELL_DLL_EXPORTED __attribute__((__visibility__("default")))
|
|
#else
|
|
# define LIBHUNSPELL_DLL_EXPORTED
|
|
#endif
|
|
|
|
#endif
|