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 | |
14 | |
15 | BOOL SQLGetTranslator( HWND hWnd, |
16 | LPSTR pszName, |
17 | WORD nNameMax, |
18 | WORD *pnNameOut, |
19 | LPSTR pszPath, |
20 | WORD nPathMax, |
21 | WORD *pnPathOut, |
22 | DWORD *pnOption ) |
23 | { |
24 | inst_logClear(); |
25 | |
26 | return FALSE; |
27 | } |
28 | |
29 | |
30 | BOOL INSTAPI SQLGetTranslatorW (HWND hwnd, |
31 | LPWSTR lpszName, |
32 | WORD cbNameMax, |
33 | WORD *pcbNameOut, |
34 | LPWSTR lpszPath, |
35 | WORD cbPathMax, |
36 | WORD *pcbPathOut, |
37 | DWORD *pvOption) |
38 | { |
39 | inst_logClear(); |
40 | |
41 | return FALSE; |
42 | } |
43 | |