| 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 | BOOL SQLInstallTranslatorEx( LPCSTR pszTranslator, |
| 15 | LPCSTR pszPathIn, |
| 16 | LPSTR pszPathOut, |
| 17 | WORD nPathOutMax, |
| 18 | WORD *pnPathOut, |
| 19 | WORD nRequest, |
| 20 | LPDWORD pnUsageCount ) |
| 21 | |
| 22 | { |
| 23 | inst_logClear(); |
| 24 | |
| 25 | return FALSE; |
| 26 | } |
| 27 | |
| 28 | BOOL INSTAPI SQLInstallTranslatorExW(LPCWSTR lpszTranslator, |
| 29 | LPCWSTR lpszPathIn, |
| 30 | LPWSTR lpszPathOut, |
| 31 | WORD cbPathOutMax, |
| 32 | WORD *pcbPathOut, |
| 33 | WORD fRequest, |
| 34 | LPDWORD lpdwUsageCount) |
| 35 | { |
| 36 | inst_logClear(); |
| 37 | |
| 38 | return FALSE; |
| 39 | } |
| 40 | |