SQL Relay C API
wrapperdll.h
1 // Copyright (c) 2012 David Muse
2 // See the COPYING file for more information.
3 
4 #ifndef SQLRCLIENTWRAPPER_DLL_H
5 #define SQLRCLIENTWRAPPER_DLL_H
6 
7 #ifdef _WIN32
8  #ifdef LIBSQLRCLIENTWRAPPER_EXPORTS
9  #define SQLRCLIENTWRAPPER_DLLSPEC __declspec(dllexport)
10  #else
11  #define SQLRCLIENTWRAPPER_DLLSPEC __declspec(dllimport)
12  #endif
13 #else
14  #define SQLRCLIENTWRAPPER_DLLSPEC
15 #endif
16 
17 #endif