forked from lurcher/unixODBC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SQLInstallDriverManager.c
66 lines (53 loc) · 1.55 KB
/
SQLInstallDriverManager.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*************************************************
* SQLInstallDriverManager
*
* I return the default dir for core components.. but
* thats it.
* This may differ slightly from the spec.
*
**************************************************
* This code was created by Peter Harvey @ CodeByDesign.
* Released under LGPL 28.JAN.99
*
* Contributions from...
* -----------------------------------------------
* Peter Harvey - [email protected]
**************************************************/
#include <config.h>
#include <odbcinstext.h>
BOOL SQLInstallDriverManager( LPSTR pszPath,
WORD nPathMax,
WORD *pnPathOut )
{
char szIniName[ INI_MAX_OBJECT_NAME + 1 ];
char b1[ ODBC_FILENAME_MAX + 1 ];
inst_logClear();
/* SANITY CHECKS */
if ( pszPath == NULL || nPathMax < 2 )
{
inst_logPushMsg( __FILE__, __FILE__, __LINE__, LOG_CRITICAL, ODBC_ERROR_GENERAL_ERR, "" );
return 0;
}
sprintf( szIniName, "%s", odbcinst_system_file_path( b1 ) );
/* DO SOMETHING */
strncpy( pszPath, szIniName, nPathMax );
if ( pnPathOut != NULL )
*pnPathOut = strlen( pszPath );
return TRUE;
}
BOOL INSTAPI SQLInstallDriverManagerW (LPWSTR lpszPath,
WORD cbPathMax,
WORD * pcbPathOut)
{
char *path;
BOOL ret;
inst_logClear();
path = calloc( cbPathMax, 1 );
ret = SQLInstallDriverManager( path, cbPathMax, pcbPathOut );
if ( ret )
{
_single_string_copy_to_wide( lpszPath, path, cbPathMax );
}
free( path );
return ret;
}