SQL Relay C API
sqlrclientwrapperincludes.h
1 // Copyright (c) 2016 David Muse
2 // See the COPYING file for more information.
3 
4 #include <rudiments/private/inttypes.h>
5 
6 #ifndef SQLRCLIENT_DLLSPEC
7  #ifdef _WIN32
8  #ifdef SQLRCLIENT_EXPORTS
9  #define SQLRCLIENT_DLLSPEC __declspec(dllexport)
10  #else
11  #define SQLRCLIENT_DLLSPEC __declspec(dllimport)
12  #endif
13  #else
14  #define SQLRCLIENT_DLLSPEC
15  #endif
16 #endif