mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 16:44:49 +01:00
21 lines
386 B
C
21 lines
386 B
C
#ifndef INC_PHRQ_EXPORTS_H
|
|
#define INC_PHRQ_EXPORTS_H
|
|
|
|
#if defined(WIN32)
|
|
# if defined(PHREEQCI_GUI)
|
|
# ifndef WINVER
|
|
# define WINVER 0x0400
|
|
# endif
|
|
# include <afx.h>
|
|
# endif
|
|
# include <windows.h>
|
|
#endif
|
|
|
|
#if defined(_WINDLL) && defined(IPhreeqc_EXPORTS)
|
|
# define IPQ_DLL_EXPORT __declspec(dllexport)
|
|
#else
|
|
# define IPQ_DLL_EXPORT
|
|
#endif
|
|
|
|
#endif // INC_PHRQ_EXPORTS_H
|