Alessandro Bonazzi 5e9513c5b2 Patch level : 12.00
Files correlati     :

Commento:
wxSMTP
2024-11-05 20:43:31 +01:00

12 lines
234 B
C

#ifndef DLLIMPEXP_H
#define DLLIMPEXP_H
#ifdef WXMAKINGDLL_SMTP
#define WXDLLIMPEXP_SMTP WXEXPORT
#elif defined(WXUSINGDLL)
#define WXDLLIMPEXP_SMTP WXIMPORT
#else // not making nor using DLL
#define WXDLLIMPEXP_SMTP
#endif
#endif