Added stub for SetQueryNetSessionCount.

This commit is contained in:
Christian Costa 2004-11-19 17:55:28 +00:00 committed by Alexandre Julliard
parent b1e361a93e
commit 1252259f6d
2 changed files with 11 additions and 2 deletions

View File

@ -123,7 +123,7 @@
@ stub IEWriteErrorLog
@ stub OpenURL
@ stub SHGetIDispatchForFolder
@ stub SetQueryNetSessionCount
@ stdcall SetQueryNetSessionCount(long)
@ stub SoftwareUpdateMessageBox
@ stub URLQualifyA
@ stub URLQualifyW

View File

@ -459,7 +459,7 @@ HRESULT WINAPI SHDOCVW_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *p
/***********************************************************************
* DllGetVersion (SHDOCVW.@)
*/
HRESULT WINAPI SHDOCVW_DllGetVersion (DLLVERSIONINFO *info)
HRESULT WINAPI SHDOCVW_DllGetVersion(DLLVERSIONINFO *info)
{
if (info->cbSize != sizeof(DLLVERSIONINFO)) FIXME("support DLLVERSIONINFO2\n");
@ -542,3 +542,12 @@ DWORD WINAPI RunInstallUninstallStubs(void)
FIXME("(), stub!\n");
return 0x0deadbee;
}
/***********************************************************************
* SetQueryNetSessionCount (SHDOCVW.@)
*/
DWORD WINAPI SetQueryNetSessionCount(DWORD arg)
{
FIXME("(%lu), stub!\n", arg);
return 0;
}