Added stub for SetQueryNetSessionCount.
This commit is contained in:
parent
b1e361a93e
commit
1252259f6d
|
@ -123,7 +123,7 @@
|
|||
@ stub IEWriteErrorLog
|
||||
@ stub OpenURL
|
||||
@ stub SHGetIDispatchForFolder
|
||||
@ stub SetQueryNetSessionCount
|
||||
@ stdcall SetQueryNetSessionCount(long)
|
||||
@ stub SoftwareUpdateMessageBox
|
||||
@ stub URLQualifyA
|
||||
@ stub URLQualifyW
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue