1/**************************************************
2 * SQLGetConfigMode
3 *
4 **************************************************
5 * This code was created by Peter Harvey @ CodeByDesign.
6 * Released under LGPL 28.JAN.99
7 *
8 * Contributions from...
9 * -----------------------------------------------
10 * Peter Harvey - pharvey@codebydesign.com
11 * Nick Gorham - nick@lurcher.org
12 **************************************************/
13#include <config.h>
14#include <stdlib.h>
15#include <odbcinstext.h>
16
17BOOL SQLGetConfigMode( UWORD *pnConfigMode )
18{
19 inst_logClear();
20
21 *pnConfigMode = __get_config_mode();
22
23 return TRUE;
24}
25
26
27