mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 00:28:23 +01:00
15 lines
285 B
C
15 lines
285 B
C
#ifndef INC_PHRQ_EXPORTS_H
|
|
#define INC_PHRQ_EXPORTS_H
|
|
|
|
#if defined(_WINDLL)
|
|
# ifdef IPhreeqc_EXPORTS
|
|
# define IPQ_DLL_EXPORT __declspec(dllexport)
|
|
# else
|
|
# define IPQ_DLL_EXPORT __declspec(dllimport)
|
|
# endif
|
|
#else
|
|
# define IPQ_DLL_EXPORT
|
|
#endif
|
|
|
|
#endif // INC_PHRQ_EXPORTS_H
|