Added stub for SetQueryNetSessionCount.
This commit is contained in:
parent
b1e361a93e
commit
1252259f6d
|
@ -123,7 +123,7 @@
|
||||||
@ stub IEWriteErrorLog
|
@ stub IEWriteErrorLog
|
||||||
@ stub OpenURL
|
@ stub OpenURL
|
||||||
@ stub SHGetIDispatchForFolder
|
@ stub SHGetIDispatchForFolder
|
||||||
@ stub SetQueryNetSessionCount
|
@ stdcall SetQueryNetSessionCount(long)
|
||||||
@ stub SoftwareUpdateMessageBox
|
@ stub SoftwareUpdateMessageBox
|
||||||
@ stub URLQualifyA
|
@ stub URLQualifyA
|
||||||
@ stub URLQualifyW
|
@ stub URLQualifyW
|
||||||
|
|
|
@ -542,3 +542,12 @@ DWORD WINAPI RunInstallUninstallStubs(void)
|
||||||
FIXME("(), stub!\n");
|
FIXME("(), stub!\n");
|
||||||
return 0x0deadbee;
|
return 0x0deadbee;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* SetQueryNetSessionCount (SHDOCVW.@)
|
||||||
|
*/
|
||||||
|
DWORD WINAPI SetQueryNetSessionCount(DWORD arg)
|
||||||
|
{
|
||||||
|
FIXME("(%lu), stub!\n", arg);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue