USML
usml_config.h
1 
5 #ifndef USML_CONFIG_H
6 #define USML_CONFIG_H
7 
13 #if defined(_MSC_VER) && defined(USML_DYN_LINK)
14  #ifdef usml_EXPORT
15  #define USML_DECLSPEC __declspec(dllexport)
16  #else
17  #define USML_DECLSPEC __declspec(dllimport)
18  #endif
19 #else
20  #define USML_DECLSPEC
21 #endif
22 
23 #endif