diff options
author | Ocke Janssen <oj@openoffice.org> | 2000-09-21 08:54:40 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2000-09-21 08:54:40 +0000 |
commit | fb7b967c07dd88cd4bdb2e09de71ae45a3fe5b8c (patch) | |
tree | 043e55e7efa7bb6620eebd1434a1bff8809db6a8 /connectivity/source/drivers/odbc/OFunctions.cxx | |
parent | c627331a1feb06f9f571c36b172f3bd9ca258911 (diff) |
use of unixODBC header files
Diffstat (limited to 'connectivity/source/drivers/odbc/OFunctions.cxx')
-rw-r--r-- | connectivity/source/drivers/odbc/OFunctions.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/connectivity/source/drivers/odbc/OFunctions.cxx b/connectivity/source/drivers/odbc/OFunctions.cxx index 5a50bf38bc7d..ebc197ba08ff 100644 --- a/connectivity/source/drivers/odbc/OFunctions.cxx +++ b/connectivity/source/drivers/odbc/OFunctions.cxx @@ -2,9 +2,9 @@ * * $RCSfile: OFunctions.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:14:23 $ + * last change: $Author: oj $ $Date: 2000-09-21 09:54:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -75,7 +75,7 @@ sal_Bool connectivity::LoadLibrary_ADABAS(::rtl::OUString &_rPath) static oslModule pODBCso = NULL; if (bLoaded) - return TRUE; + return sal_True; char *pPath =getenv("DBROOT"); if(pPath) @@ -103,14 +103,14 @@ sal_Bool connectivity::LoadLibrary_ADABAS(::rtl::OUString &_rPath) } // ------------------------------------------------------------------------- // Dynamisches Laden der DLL/shared lib und Adressen der Funktionen besorgen: -// Liefert TRUE bei Erfolg. +// Liefert sal_True bei Erfolg. sal_Bool connectivity::LoadLibrary_ODBC3(::rtl::OUString &_rPath) { static sal_Bool bLoaded = sal_False; static oslModule pODBCso = NULL; if (bLoaded) - return TRUE; + return sal_True; #ifdef WIN _rPath = ::rtl::OUString::createFromAscii("ODBC.DLL"); |