29 lines
292 B
C
29 lines
292 B
C
#ifndef GDSETLICENSE_H
|
|
#define GDSETLICENSE_H
|
|
|
|
|
|
#if defined(ADDLICENSE_LIBRARY)
|
|
# define GDSETLICENSE_EXPORT __declspec(dllexport)
|
|
#else
|
|
# define GDSETLICENSE_EXPORT __declspec(dllimport)
|
|
#endif
|
|
|
|
|
|
extern "C" bool GDSETLICENSE_EXPORT AddGDLicense();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // GDSETLICENSE_H
|