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

@@ -365,16 +365,16 @@ struct DbList
// for other code segments to use, or close all of them when the application has
// completed.
wxDB *GetDbConnection(DbStuff *pDbStuff);
bool FreeDbConnection(wxDB *pDb);
void CloseDbConnections(void);
int NumberDbConnectionsInUse(void);
wxDB* WXDLLEXPORT GetDbConnection(DbStuff *pDbStuff);
bool WXDLLEXPORT FreeDbConnection(wxDB *pDb);
void WXDLLEXPORT CloseDbConnections(void);
int WXDLLEXPORT NumberDbConnectionsInUse(void);
// This routine allows you to query a driver manager
// for a list of available datasources. Call this routine
// the first time using SQL_FETCH_FIRST. Continue to call it
// using SQL_FETCH_NEXT until you've exhausted the list.
bool GetDataSource(HENV henv, char *Dsn, SWORD DsnMax, char *DsDesc, SWORD DsDescMax,
bool WXDLLEXPORT GetDataSource(HENV henv, char *Dsn, SWORD DsnMax, char *DsDesc, SWORD DsDescMax,
UWORD direction = SQL_FETCH_NEXT);
#endif