comparison C++/DynLib.h @ 301:4e17193db141

DynLib: rename EXPORT to DYNLIB_EXPORT
author David Demelier <markand@malikania.fr>
date Sat, 15 Nov 2014 13:19:21 +0100
parents 24085fae3162
children
comparison
equal deleted inserted replaced
300:2935e07ddb88 301:4e17193db141
21 21
22 #include <string> 22 #include <string>
23 23
24 #if defined(_WIN32) 24 #if defined(_WIN32)
25 # include <Windows.h> 25 # include <Windows.h>
26 # define EXPORT __declspec(dllexport) 26 # define DYNLIB_EXPORT __declspec(dllexport)
27 #else 27 #else
28 # define EXPORT 28 # define DYNLIB_EXPORT
29 #endif 29 #endif
30 30
31 /** 31 /**
32 * @class DynLib 32 * @class DynLib
33 * @brief Load a dynamic module 33 * @brief Load a dynamic module