1
2// The following ifdef block is the standard way of creating macros which make exporting
3// from a DLL simpler. All files within this DLL are compiled with the LIBSASL_EXPORTS
4// symbol defined on the command line. this symbol should not be defined on any project
5// that uses this DLL. This way any other project whose source files include this file see
6// LIBSASL_API functions as being imported from a DLL, wheras this DLL sees symbols
7// defined with this macro as being exported.
8#ifdef LIBSASL_EXPORTS
9#define LIBSASL_API __declspec(dllexport)
10#else
11#define LIBSASL_API __declspec(dllimport)
12#endif
13
14
15
16LIBSASL_API int fnLibsasl(void);
17
18