1/**************************************************
2 *
3 **************************************************
4 * This code was created by Peter Harvey @ CodeByDesign.
5 * Released under LGPL 28.JAN.99
6 *
7 * Contributions from...
8 * -----------------------------------------------
9 * Peter Harvey - pharvey@codebydesign.com
10 **************************************************/
11#include <config.h>
12#include <odbcinstext.h>
13
14BOOL SQLRemoveDriverManager( LPDWORD pnUsageCount )
15{
16 inst_logClear();
17
18 if ( pnUsageCount == NULL )
19 {
20 inst_logPushMsg( __FILE__, __FILE__, __LINE__, LOG_CRITICAL, ODBC_ERROR_GENERAL_ERR, "" );
21 return FALSE;
22 }
23
24 *pnUsageCount = 1;
25
26 return TRUE;
27}
28
29
30
31
32
33