//  // //  #### # # # -= SQLiteX =-  // // # # ## ## Variant.h  // //  ## # ###  // //  ## # ### SQLite variant type  // //  # # ## ##  // // #### ##### # # R1 (C)2005 Markus Ewald -> License.txt  // //  // #ifndef SQLITEX_CONFIG_H #define SQLITEX_CONFIG_H #ifndef __cplusplus #error SQLiteX requires C++ #endif // Defines the current version of nuclex. Can be used by // applications to identify compatibility issues // #define SQLITEX_VERSION 0x100 // The following block will decide whether symbols are imported from a // dll (client app) or exported to a dll (library). The NUCLEX_EXPORTS symbol // should only be used for compiling the nuclex library and nowhere else. // // If you dynamically link against nuclex, you should define NUCLEX_DLL for // your project in order to import the dll symbols from nuclex. // #ifdef SQLITEX_DYNAMIC #ifdef SQLITEX_EXPORTS #define SQLITEX_API __declspec(dllexport) #else #define SQLITEX_API __declspec(dllimport) #endif #else #define SQLITEX_API #endif #endif // SQLITEX_CONFIG_H