no message

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1336 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Unknown (UG)
1999-01-08 12:45:07 +00:00
parent 9f8de18fb6
commit a121841570
2 changed files with 10 additions and 10 deletions

View File

@@ -56,7 +56,7 @@
#include <ctype.h>
#include "wx/db.h"
DbList *PtrBegDbList = 0;
DbList* WXDLLEXPORT PtrBegDbList = 0;
/********** wxDB Constructor **********/
wxDB::wxDB(HENV &aHenv)
@@ -1353,7 +1353,7 @@ bool wxDB::WriteSqlLog(char *logMsg)
/********** GetDbConnection() **********/
wxDB *GetDbConnection(DbStuff *pDbStuff)
wxDB* WXDLLEXPORT GetDbConnection(DbStuff *pDbStuff)
{
DbList *pList;
@@ -1413,7 +1413,7 @@ wxDB *GetDbConnection(DbStuff *pDbStuff)
} // GetDbConnection()
/********** FreeDbConnection() **********/
bool FreeDbConnection(wxDB *pDb)
bool WXDLLEXPORT FreeDbConnection(wxDB *pDb)
{
DbList *pList;
@@ -1430,7 +1430,7 @@ bool FreeDbConnection(wxDB *pDb)
} // FreeDbConnection()
/********** CloseDbConnections() **********/
void CloseDbConnections(void)
void WXDLLEXPORT CloseDbConnections(void)
{
DbList *pList, *pNext;
@@ -1450,7 +1450,7 @@ void CloseDbConnections(void)
} // CloseDbConnections()
/********** NumberDbConnectionsInUse() **********/
int NumberDbConnectionsInUse(void)
int WXDLLEXPORT NumberDbConnectionsInUse(void)
{
DbList *pList;
int cnt = 0;