QtBigInt/minigmp_global.h
2019-07-07 18:37:20 +03:00

22 lines
494 B
C

//#
//# Copyright (C) 2018-2019 QuasarApp.
//# Distributed under the lgplv3 software license, see the accompanying
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
#ifndef MINIGMP_GLOBAL_H
#define MINIGMP_GLOBAL_H
#ifdef _WIN32
# define UNTITLEDSHARED_EXPORT __declspec(dllexport)
#endif
#ifdef linux
# define UNTITLEDSHARED_EXPORT __attribute__((visibility("default")))
#endif
#endif //MINIGMP_GLOBAL_H