hdac SDK
SDK for hdac blockchain development
rpccaller_global.h
1 #ifndef RPCCALLER_GLOBAL_H
2 #define RPCCALLER_GLOBAL_H
3 #if (defined _WIN32) || (defined _WIN64)
4  #define Q_DECL_EXPORT __declspec(dllexport)
5  #define Q_DECL_IMPORT __declspec(dllimport)
6 #else
7  #define Q_DECL_EXPORT
8  #define Q_DECL_IMPORT
9 #endif
10 
11 #if defined(RPCCALLER_LIBRARY)
12 # define RPCCALLERSHARED_EXPORT Q_DECL_EXPORT
13 #else
14 # define RPCCALLERSHARED_EXPORT Q_DECL_IMPORT
15 #endif
16 #endif // RPCCALLER_GLOBAL_H