SQL Relay C API
|
00001 // Copyright (c) 2012 David Muse 00002 // See the COPYING file for more information. 00003 00004 #ifndef SQLRCLIENTWRAPPER_DLL_H 00005 #define SQLRCLIENTWRAPPER_DLL_H 00006 00007 #ifdef _WIN32 00008 #ifdef LIBSQLRCLIENTWRAPPER_EXPORTS 00009 #define SQLRCLIENTWRAPPER_DLLSPEC __declspec(dllexport) 00010 #else 00011 #define SQLRCLIENTWRAPPER_DLLSPEC __declspec(dllimport) 00012 #endif 00013 #else 00014 #define SQLRCLIENTWRAPPER_DLLSPEC 00015 #endif 00016 00017 #endif