 |
libfilezilla
|
Loading...
Searching...
No Matches
Go to the documentation of this file. 1#ifndef LIBFILEZILLA_VISIBILITY_HELPER_HEADER
2#define LIBFILEZILLA_VISIBILITY_HELPER_HEADER
32#define FZ_EXPORT_PUBLIC
35#define FZ_EXPORT_PRIVATE
38#define FZ_IMPORT_SHARED
42#include "private/defs.hpp"
49 #define FZ_EXPORT_PUBLIC __declspec(dllexport)
50 #define FZ_EXPORT_PRIVATE
52 #define FZ_EXPORT_PUBLIC __declspec(dllexport)
53 #define FZ_EXPORT_PRIVATE
58 #define FZ_EXPORT_PUBLIC __attribute__((visibility("default")))
59 #define FZ_EXPORT_PRIVATE __attribute__((visibility("hidden")))
64#if defined(FZ_WINDOWS)
65 #define FZ_IMPORT_SHARED __declspec(dllimport)
67 #define FZ_IMPORT_SHARED