X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/886dd7d28e50c003cc88b81b968d487a3c17b0d7..2da2f941bbd25599c2c1453204b5f1a4e116ae91:/include/wx/dbtable.h?ds=sidebyside diff --git a/include/wx/dbtable.h b/include/wx/dbtable.h index 95d4fb9379..ec15ded2d3 100644 --- a/include/wx/dbtable.h +++ b/include/wx/dbtable.h @@ -56,7 +56,7 @@ const int wxDB_NO_MORE_COLUMN_NUMBERS = -1; // wxDbTable class which allows it to create a table in the data // source, exchange data between the data source and the C++ // object, and so on. -class WXDLLEXPORT_BASE wxDbColDef +class WXDLLIMPEXP_BASE wxDbColDef { public: wxChar ColName[DB_MAX_COLUMN_NAME_LEN+1]; // Column Name @@ -77,7 +77,7 @@ public: }; // wxDbColDef -class WXDLLEXPORT_BASE wxDbColDataPtr +class WXDLLIMPEXP_BASE wxDbColDataPtr { public: void *PtrDataObj; @@ -87,7 +87,7 @@ public: // This structure is used when creating secondary indexes. -class WXDLLEXPORT_BASE wxDbIdxDef +class WXDLLIMPEXP_BASE wxDbIdxDef { public: wxChar ColName[DB_MAX_COLUMN_NAME_LEN+1]; @@ -95,7 +95,7 @@ public: }; // wxDbIdxDef -class WXDLLEXPORT_BASE wxDbTable +class WXDLLIMPEXP_BASE wxDbTable { private: ULONG tableID; // Used for debugging. This can help to match up mismatched constructors/destructors