// C++ interfaces for the Scimore DB // ////////////////////////////////////////////////////////////////////// #pragma once #define _WIN32_WINNT 0x0500 #define PAGE_SIZE 8192 #include #include #include #include #include #include #include #include "exception.h" #include "connection.h" #include "recordset.h" #include "command.h" #include "embeddeddb.h" #include "replication.h" /************************************** * * user defined callback: BULK_TRANSFER_CALLBACK * ************************************** * * Functional description * * called by framework when send/receive x bytes * from/to server during import/export of data **************************************/ typedef void (__stdcall BULK_TRANSFER_CALLBACK) (const int &nBytes, const int &nTotalBytes); #include "bulkexport.h" #include "bulkimport.h"