Initial mostly stub implementation of ODBC control panel.
This commit is contained in:
parent
2a782c65bd
commit
b5c63ed491
|
@ -1627,6 +1627,7 @@ dlls/newdev/Makefile
|
||||||
dlls/ntdll/Makefile
|
dlls/ntdll/Makefile
|
||||||
dlls/ntdll/tests/Makefile
|
dlls/ntdll/tests/Makefile
|
||||||
dlls/odbc32/Makefile
|
dlls/odbc32/Makefile
|
||||||
|
dlls/odbccp32/Makefile
|
||||||
dlls/ole32/Makefile
|
dlls/ole32/Makefile
|
||||||
dlls/ole32/tests/Makefile
|
dlls/ole32/tests/Makefile
|
||||||
dlls/oleacc/Makefile
|
dlls/oleacc/Makefile
|
||||||
|
|
|
@ -97,6 +97,7 @@ BASEDIRS = \
|
||||||
newdev \
|
newdev \
|
||||||
ntdll \
|
ntdll \
|
||||||
odbc32 \
|
odbc32 \
|
||||||
|
odbccp32 \
|
||||||
ole32 \
|
ole32 \
|
||||||
oleacc \
|
oleacc \
|
||||||
oleaut32 \
|
oleaut32 \
|
||||||
|
@ -342,6 +343,7 @@ SYMLINKS_SO = \
|
||||||
newdev.dll.so \
|
newdev.dll.so \
|
||||||
ntdll.dll.so \
|
ntdll.dll.so \
|
||||||
odbc32.dll.so \
|
odbc32.dll.so \
|
||||||
|
odbccp32.dll.so \
|
||||||
ole32.dll.so \
|
ole32.dll.so \
|
||||||
oleacc.dll.so \
|
oleacc.dll.so \
|
||||||
oleaut32.dll.so \
|
oleaut32.dll.so \
|
||||||
|
@ -735,6 +737,9 @@ ntdll.dll.so: ntdll/ntdll.dll.so
|
||||||
odbc32.dll.so: odbc32/odbc32.dll.so
|
odbc32.dll.so: odbc32/odbc32.dll.so
|
||||||
$(RM) $@ && $(LN_S) odbc32/odbc32.dll.so $@
|
$(RM) $@ && $(LN_S) odbc32/odbc32.dll.so $@
|
||||||
|
|
||||||
|
odbccp32.dll.so: odbccp32/odbccp32.dll.so
|
||||||
|
$(RM) $@ && $(LN_S) odbccp32/odbccp32.dll.so $@
|
||||||
|
|
||||||
ole32.dll.so: ole32/ole32.dll.so
|
ole32.dll.so: ole32/ole32.dll.so
|
||||||
$(RM) $@ && $(LN_S) ole32/ole32.dll.so $@
|
$(RM) $@ && $(LN_S) ole32/ole32.dll.so $@
|
||||||
|
|
||||||
|
@ -1121,6 +1126,7 @@ IMPORT_LIBS = \
|
||||||
newdev/libnewdev.$(IMPLIBEXT) \
|
newdev/libnewdev.$(IMPLIBEXT) \
|
||||||
ntdll/libntdll.$(IMPLIBEXT) \
|
ntdll/libntdll.$(IMPLIBEXT) \
|
||||||
odbc32/libodbc32.$(IMPLIBEXT) \
|
odbc32/libodbc32.$(IMPLIBEXT) \
|
||||||
|
odbccp32/libodbccp32.$(IMPLIBEXT) \
|
||||||
ole32/libole32.$(IMPLIBEXT) \
|
ole32/libole32.$(IMPLIBEXT) \
|
||||||
oleacc/liboleacc.$(IMPLIBEXT) \
|
oleacc/liboleacc.$(IMPLIBEXT) \
|
||||||
oleaut32/liboleaut32.$(IMPLIBEXT) \
|
oleaut32/liboleaut32.$(IMPLIBEXT) \
|
||||||
|
@ -1412,6 +1418,9 @@ ntdll/libntdll.$(IMPLIBEXT): ntdll/ntdll.spec $(WINEBUILD)
|
||||||
odbc32/libodbc32.$(IMPLIBEXT): odbc32/odbc32.spec $(WINEBUILD)
|
odbc32/libodbc32.$(IMPLIBEXT): odbc32/odbc32.spec $(WINEBUILD)
|
||||||
@cd odbc32 && $(MAKE) libodbc32.$(IMPLIBEXT)
|
@cd odbc32 && $(MAKE) libodbc32.$(IMPLIBEXT)
|
||||||
|
|
||||||
|
odbccp32/libodbccp32.$(IMPLIBEXT): odbccp32/odbccp32.spec $(WINEBUILD)
|
||||||
|
@cd odbccp32 && $(MAKE) libodbccp32.$(IMPLIBEXT)
|
||||||
|
|
||||||
ole32/libole32.$(IMPLIBEXT): ole32/ole32.spec $(WINEBUILD)
|
ole32/libole32.$(IMPLIBEXT): ole32/ole32.spec $(WINEBUILD)
|
||||||
@cd ole32 && $(MAKE) libole32.$(IMPLIBEXT)
|
@cd ole32 && $(MAKE) libole32.$(IMPLIBEXT)
|
||||||
|
|
||||||
|
@ -1715,6 +1724,7 @@ netapi32/netapi32.dll.so: netapi32
|
||||||
newdev/newdev.dll.so: newdev
|
newdev/newdev.dll.so: newdev
|
||||||
ntdll/ntdll.dll.so: ntdll
|
ntdll/ntdll.dll.so: ntdll
|
||||||
odbc32/odbc32.dll.so: odbc32
|
odbc32/odbc32.dll.so: odbc32
|
||||||
|
odbccp32/odbccp32.dll.so: odbccp32
|
||||||
ole32/ole32.dll.so: ole32
|
ole32/ole32.dll.so: ole32
|
||||||
oleacc/oleacc.dll.so: oleacc
|
oleacc/oleacc.dll.so: oleacc
|
||||||
oleaut32/oleaut32.dll.so: oleaut32
|
oleaut32/oleaut32.dll.so: oleaut32
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
Makefile
|
||||||
|
libodbccp32.def
|
||||||
|
odbccp32.dll.dbg.c
|
|
@ -0,0 +1,15 @@
|
||||||
|
TOPSRCDIR = @top_srcdir@
|
||||||
|
TOPOBJDIR = ../..
|
||||||
|
SRCDIR = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
MODULE = odbccp32.dll
|
||||||
|
IMPORTLIB = libodbccp32.$(IMPLIBEXT)
|
||||||
|
IMPORTS = ole32 advapi32 kernel32
|
||||||
|
EXTRALIBS = -luuid $(LIBUNICODE)
|
||||||
|
|
||||||
|
C_SRCS = \
|
||||||
|
odbccp32.c
|
||||||
|
|
||||||
|
@MAKE_DLL_RULES@
|
||||||
|
|
||||||
|
### Dependencies:
|
|
@ -0,0 +1,498 @@
|
||||||
|
/*
|
||||||
|
* Implementation of the ODBC driver installer
|
||||||
|
*
|
||||||
|
* Copyright 2005 Mike McCormack for CodeWeavers
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2.1 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
|
* License along with this library; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
#define COBJMACROS
|
||||||
|
#define NONAMELESSUNION
|
||||||
|
|
||||||
|
#include "windef.h"
|
||||||
|
#include "winbase.h"
|
||||||
|
#include "winreg.h"
|
||||||
|
#include "winnls.h"
|
||||||
|
#include "wine/debug.h"
|
||||||
|
|
||||||
|
#include "odbcinst.h"
|
||||||
|
|
||||||
|
WINE_DEFAULT_DEBUG_CHANNEL(odbc);
|
||||||
|
|
||||||
|
static LPWSTR SQLInstall_strdup_multi(LPCSTR str)
|
||||||
|
{
|
||||||
|
LPCSTR p;
|
||||||
|
LPWSTR ret = NULL;
|
||||||
|
DWORD len;
|
||||||
|
|
||||||
|
if (!str)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
for (p = str; *p; p += lstrlenA(p) + 1)
|
||||||
|
;
|
||||||
|
|
||||||
|
len = MultiByteToWideChar(CP_ACP, 0, str, p - str, NULL, 0 );
|
||||||
|
ret = HeapAlloc(GetProcessHeap(), 0, (len+1)*sizeof(WCHAR));
|
||||||
|
MultiByteToWideChar(CP_ACP, 0, str, p - str, ret, len );
|
||||||
|
ret[len] = 0;
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static LPWSTR SQLInstall_strdup(LPCSTR str)
|
||||||
|
{
|
||||||
|
DWORD len;
|
||||||
|
LPWSTR ret = NULL;
|
||||||
|
|
||||||
|
if (!str)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0 );
|
||||||
|
ret = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
|
||||||
|
MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len );
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLConfigDataSourceW(HWND hwndParent, WORD fRequest,
|
||||||
|
LPCWSTR lpszDriver, LPCWSTR lpszAttributes)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLConfigDataSource(HWND hwndParent, WORD fRequest,
|
||||||
|
LPCSTR lpszDriver, LPCSTR lpszAttributes)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLConfigDriverW(HWND hwndParent, WORD fRequest, LPCWSTR lpszDriver,
|
||||||
|
LPCWSTR lpszArgs, LPWSTR lpszMsg, WORD cbMsgMax, WORD *pcbMsgOut)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLConfigDriver(HWND hwndParent, WORD fRequest, LPCSTR lpszDriver,
|
||||||
|
LPCSTR lpszArgs, LPSTR lpszMsg, WORD cbMsgMax, WORD *pcbMsgOut)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLCreateDataSourceW(HWND hwnd, LPWSTR lpszDS)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLCreateDataSource(HWND hwnd, LPSTR lpszDS)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLGetAvailableDriversW(LPCWSTR lpszInfFile, LPWSTR lpszBuf,
|
||||||
|
WORD cbBufMax, WORD *pcbBufOut)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLGetAvailableDrivers(LPCSTR lpszInfFile, LPSTR lpszBuf,
|
||||||
|
WORD cbBufMax, WORD *pcbBufOut)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLGetConfigMode(UWORD *pwConfigMode)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLGetInstalledDriversW(LPWSTR lpszBuf, WORD cbBufMax,
|
||||||
|
WORD *pcbBufOut)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLGetInstalledDrivers(LPSTR lpszBuf, WORD cbBufMax,
|
||||||
|
WORD *pcbBufOut)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
int WINAPI SQLGetPrivateProfileStringW(LPCWSTR lpszSection, LPCWSTR lpszEntry,
|
||||||
|
LPCWSTR lpszDefault, LPCWSTR RetBuffer, INT cbRetBuffer,
|
||||||
|
LPCWSTR lpszFilename)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
int WINAPI SQLGetPrivateProfileString(LPCSTR lpszSection, LPCSTR lpszEntry,
|
||||||
|
LPCSTR lpszDefault, LPCSTR RetBuffer, INT cbRetBuffer,
|
||||||
|
LPCSTR lpszFilename)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLGetTranslatorW(HWND hwndParent, LPWSTR lpszName, WORD cbNameMax,
|
||||||
|
WORD *pcbNameOut, LPWSTR lpszPath, WORD cbPathMax,
|
||||||
|
WORD *pcbPathOut, DWORD *pvOption)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLGetTranslator(HWND hwndParent, LPSTR lpszName, WORD cbNameMax,
|
||||||
|
WORD *pcbNameOut, LPSTR lpszPath, WORD cbPathMax,
|
||||||
|
WORD *pcbPathOut, DWORD *pvOption)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallDriverW(LPCWSTR lpszInfFile, LPCWSTR lpszDriver,
|
||||||
|
LPWSTR lpszPath, WORD cbPathMax, WORD * pcbPathOut)
|
||||||
|
{
|
||||||
|
FIXME("%s %s %p %d %p\n", debugstr_w(lpszInfFile),
|
||||||
|
debugstr_w(lpszDriver), lpszPath, cbPathMax, pcbPathOut);
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallDriver(LPCSTR lpszInfFile, LPCSTR lpszDriver,
|
||||||
|
LPSTR lpszPath, WORD cbPathMax, WORD * pcbPathOut)
|
||||||
|
{
|
||||||
|
FIXME("%s %s %p %d %p\n", debugstr_a(lpszInfFile),
|
||||||
|
debugstr_a(lpszDriver), lpszPath, cbPathMax, pcbPathOut);
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallDriverExW(LPCWSTR lpszDriver, LPCWSTR lpszPathIn,
|
||||||
|
LPWSTR lpszPathOut, WORD cbPathOutMax, WORD *pcbPathOut,
|
||||||
|
WORD fRequest, LPDWORD lpdwUsageCount)
|
||||||
|
{
|
||||||
|
LPCWSTR p;
|
||||||
|
|
||||||
|
FIXME("%s %s %p %d %p %d %p\n", debugstr_w(lpszDriver), debugstr_w(lpszPathIn),
|
||||||
|
lpszPathOut, cbPathOutMax, pcbPathOut, fRequest, lpdwUsageCount);
|
||||||
|
|
||||||
|
for (p = lpszDriver; *p; p += lstrlenW(p) + 1)
|
||||||
|
FIXME("%s\n", debugstr_w(p));
|
||||||
|
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallDriverEx(LPCSTR lpszDriver, LPCSTR lpszPathIn,
|
||||||
|
LPSTR lpszPathOut, WORD cbPathOutMax, WORD *pcbPathOut,
|
||||||
|
WORD fRequest, LPDWORD lpdwUsageCount)
|
||||||
|
{
|
||||||
|
LPWSTR driver, pathin;
|
||||||
|
WCHAR pathout[MAX_PATH];
|
||||||
|
BOOL r;
|
||||||
|
WORD cbOut = 0;
|
||||||
|
|
||||||
|
TRACE("%s %s %p %d %p %d %p\n", debugstr_a(lpszDriver), debugstr_a(lpszPathIn),
|
||||||
|
lpszPathOut, cbPathOutMax, pcbPathOut, fRequest, lpdwUsageCount);
|
||||||
|
|
||||||
|
driver = SQLInstall_strdup_multi(lpszDriver);
|
||||||
|
pathin = SQLInstall_strdup(lpszPathIn);
|
||||||
|
|
||||||
|
r = SQLInstallDriverExW( driver, pathin, pathout, MAX_PATH,
|
||||||
|
&cbOut, fRequest, lpdwUsageCount );
|
||||||
|
if (r)
|
||||||
|
{
|
||||||
|
*pcbPathOut = WideCharToMultiByte(CP_ACP, 0, pathout, -1,
|
||||||
|
lpszPathOut, cbPathOutMax, NULL, NULL );
|
||||||
|
}
|
||||||
|
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallDriverManagerW(LPWSTR lpszPath, WORD cbPathMax,
|
||||||
|
WORD *pcbPathOut)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallDriverManager(LPSTR lpszPath, WORD cbPathMax,
|
||||||
|
WORD *pcbPathOut)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallODBCW(HWND hwndParent, LPCWSTR lpszInfFile,
|
||||||
|
LPCWSTR lpszSrcPath, LPCWSTR lpszDrivers)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallODBC(HWND hwndParent, LPCSTR lpszInfFile,
|
||||||
|
LPCSTR lpszSrcPath, LPCSTR lpszDrivers)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
RETCODE WINAPI SQLInstallerErrorW(WORD iError, DWORD *pfErrorCode,
|
||||||
|
LPWSTR lpszErrorMsg, WORD cbErrorMsgMax, WORD *pcbErrorMsg)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
RETCODE WINAPI SQLInstallerError(WORD iError, DWORD *pfErrorCode,
|
||||||
|
LPSTR lpszErrorMsg, WORD cbErrorMsgMax, WORD *pcbErrorMsg)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallTranslatorExW(LPCWSTR lpszTranslator, LPCWSTR lpszPathIn,
|
||||||
|
LPWSTR lpszPathOut, WORD cbPathOutMax, WORD *pcbPathOut,
|
||||||
|
WORD fRequest, LPDWORD lpdwUsageCount)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallTranslatorEx(LPCSTR lpszTranslator, LPCSTR lpszPathIn,
|
||||||
|
LPSTR lpszPathOut, WORD cbPathOutMax, WORD *pcbPathOut,
|
||||||
|
WORD fRequest, LPDWORD lpdwUsageCount)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallTranslator(LPCSTR lpszInfFile, LPCSTR lpszTranslator,
|
||||||
|
LPCSTR lpszPathIn, LPSTR lpszPathOut, WORD cbPathOutMax,
|
||||||
|
WORD *pcbPathOut, WORD fRequest, LPDWORD lpdwUsageCount)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLInstallTranslatorW(LPCWSTR lpszInfFile, LPCWSTR lpszTranslator,
|
||||||
|
LPCWSTR lpszPathIn, LPWSTR lpszPathOut, WORD cbPathOutMax,
|
||||||
|
WORD *pcbPathOut, WORD fRequest, LPDWORD lpdwUsageCount)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLManageDataSources(HWND hwnd)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
RETCODE WINAPI SQLPostInstallerErrorW(DWORD fErrorCode, LPWSTR szErrorMsg)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
RETCODE WINAPI SQLPostInstallerError(DWORD fErrorCode, LPSTR szErrorMsg)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLReadFileDSNW(LPCWSTR lpszFileName, LPCWSTR lpszAppName,
|
||||||
|
LPCWSTR lpszKeyName, LPWSTR lpszString, WORD cbString,
|
||||||
|
WORD *pcbString)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLReadFileDSN(LPCSTR lpszFileName, LPCSTR lpszAppName,
|
||||||
|
LPCSTR lpszKeyName, LPSTR lpszString, WORD cbString,
|
||||||
|
WORD *pcbString)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLRemoveDefaultDataSource(void)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLRemoveDriverW(LPCWSTR lpszDriver, BOOL fRemoveDSN,
|
||||||
|
LPDWORD lpdwUsageCount)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLRemoveDriver(LPCSTR lpszDriver, BOOL fRemoveDSN,
|
||||||
|
LPDWORD lpdwUsageCount)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLRemoveDriverManager(LPDWORD pdwUsageCount)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLRemoveDSNFromIniW(LPCWSTR lpszDSN)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLRemoveDSNFromIni(LPCSTR lpszDSN)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLRemoveTranslatorW(LPCWSTR lpszTranslator, LPDWORD lpdwUsageCount)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLRemoveTranslator(LPCSTR lpszTranslator, LPDWORD lpdwUsageCount)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLSetConfigMode(UWORD wConfigMode)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLValidDSNW(LPCWSTR lpszDSN)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLValidDSN(LPCSTR lpszDSN)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLWriteDSNToIniW(LPCWSTR lpszDSN, LPCWSTR lpszDriver)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLWriteDSNToIni(LPCSTR lpszDSN, LPCSTR lpszDriver)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLWriteFileDSNW(LPCWSTR lpszFileName, LPCWSTR lpszAppName,
|
||||||
|
LPCWSTR lpszKeyName, LPCWSTR lpszString)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLWriteFileDSN(LPCSTR lpszFileName, LPCSTR lpszAppName,
|
||||||
|
LPCSTR lpszKeyName, LPCSTR lpszString)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLWritePrivateProfileStringW(LPCWSTR lpszSection, LPCWSTR lpszEntry,
|
||||||
|
LPCWSTR lpszString, LPCWSTR lpszFilename)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SQLWritePrivateProfileString(LPCSTR lpszSection, LPCSTR lpszEntry,
|
||||||
|
LPCSTR lpszString, LPCSTR lpszFilename)
|
||||||
|
{
|
||||||
|
FIXME("\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
|
@ -0,0 +1,57 @@
|
||||||
|
@ stub ODBCCPlApplet
|
||||||
|
@ stdcall SQLConfigDataSource(ptr long wstr wstr)
|
||||||
|
@ stdcall SQLConfigDataSourceW(ptr long str str)
|
||||||
|
@ stdcall SQLConfigDriver(ptr long str str ptr long ptr)
|
||||||
|
@ stdcall SQLConfigDriverW(ptr long wstr wstr ptr long ptr)
|
||||||
|
@ stdcall SQLCreateDataSource(ptr str)
|
||||||
|
@ stub SQLCreateDataSourceEx
|
||||||
|
@ stub SQLCreateDataSourceExW
|
||||||
|
@ stdcall SQLCreateDataSourceW(ptr wstr)
|
||||||
|
@ stdcall SQLGetAvailableDrivers(str ptr long ptr)
|
||||||
|
@ stdcall SQLGetAvailableDriversW(wstr ptr long ptr)
|
||||||
|
@ stdcall SQLGetConfigMode(ptr)
|
||||||
|
@ stdcall SQLGetInstalledDrivers(str long ptr)
|
||||||
|
@ stdcall SQLGetInstalledDriversW(wstr long ptr)
|
||||||
|
@ stdcall SQLGetPrivateProfileString(str str str str long str)
|
||||||
|
@ stdcall SQLGetPrivateProfileStringW(wstr wstr wstr wstr long wstr)
|
||||||
|
@ stdcall SQLGetTranslator(ptr str long ptr ptr long ptr ptr)
|
||||||
|
@ stdcall SQLGetTranslatorW(ptr wstr long ptr ptr long ptr ptr)
|
||||||
|
@ stdcall SQLInstallDriver(str str str long ptr long ptr)
|
||||||
|
@ stdcall SQLInstallDriverEx(str str str long ptr)
|
||||||
|
@ stdcall SQLInstallDriverExW(wstr wstr wstr long ptr long ptr)
|
||||||
|
@ stdcall SQLInstallDriverManager(ptr long ptr)
|
||||||
|
@ stdcall SQLInstallDriverManagerW(ptr long ptr)
|
||||||
|
@ stdcall SQLInstallDriverW(wstr wstr wstr long ptr)
|
||||||
|
@ stdcall SQLInstallODBC(ptr str str str)
|
||||||
|
@ stdcall SQLInstallODBCW(ptr wstr wstr wstr)
|
||||||
|
@ stdcall SQLInstallTranslator(str str str ptr long ptr long ptr)
|
||||||
|
@ stdcall SQLInstallTranslatorEx(str str ptr long ptr long ptr)
|
||||||
|
@ stdcall SQLInstallTranslatorExW(wstr wstr ptr long ptr long ptr)
|
||||||
|
@ stdcall SQLInstallTranslatorW(wstr wstr wstr ptr long ptr long ptr)
|
||||||
|
@ stdcall SQLInstallerError(long ptr ptr long ptr)
|
||||||
|
@ stdcall SQLInstallerErrorW(long ptr ptr long ptr)
|
||||||
|
@ stub SQLLoadDataSourcesListBox
|
||||||
|
@ stub SQLLoadDriverListBox
|
||||||
|
@ stdcall SQLManageDataSources(ptr)
|
||||||
|
@ stdcall SQLPostInstallerError(long ptr)
|
||||||
|
@ stdcall SQLPostInstallerErrorW(long ptr)
|
||||||
|
@ stdcall SQLReadFileDSN(str str str ptr long ptr)
|
||||||
|
@ stdcall SQLReadFileDSNW(wstr wstr wstr ptr long ptr)
|
||||||
|
@ stdcall SQLRemoveDSNFromIni(str)
|
||||||
|
@ stdcall SQLRemoveDSNFromIniW(wstr)
|
||||||
|
@ stdcall SQLRemoveDefaultDataSource()
|
||||||
|
@ stdcall SQLRemoveDriver(str long ptr)
|
||||||
|
@ stdcall SQLRemoveDriverManager(ptr)
|
||||||
|
@ stdcall SQLRemoveDriverW(wstr long ptr)
|
||||||
|
@ stdcall SQLRemoveTranslator(str ptr)
|
||||||
|
@ stdcall SQLRemoveTranslatorW(wstr ptr)
|
||||||
|
@ stdcall SQLSetConfigMode(long)
|
||||||
|
@ stdcall SQLValidDSN(str)
|
||||||
|
@ stdcall SQLValidDSNW(wstr)
|
||||||
|
@ stdcall SQLWriteDSNToIni(str str)
|
||||||
|
@ stdcall SQLWriteDSNToIniW(wstr wstr)
|
||||||
|
@ stdcall SQLWriteFileDSN(str str str str)
|
||||||
|
@ stdcall SQLWriteFileDSNW(wstr wstr wstr wstr)
|
||||||
|
@ stdcall SQLWritePrivateProfileString(str str str str)
|
||||||
|
@ stdcall SQLWritePrivateProfileStringW(wstr wstr wstr wstr)
|
||||||
|
@ stub SelectTransDlg
|
Loading…
Reference in New Issue