[SHDOCVW] Stub for SetQueryNetSessionCount

Christian Costa titan.costa at wanadoo.fr
Wed Nov 10 13:55:07 CST 2004


Hi,

Changelog:
Added stub for SetQueryNetSessionCount.

Christian Costa   titan.costa at wanadoo.fr

-------------- next part --------------
Index: shdocvw.spec
===================================================================
RCS file: /home/wine/wine/dlls/shdocvw/shdocvw.spec,v
retrieving revision 1.12
diff -u -r1.12 shdocvw.spec
--- shdocvw.spec	11 Sep 2003 01:04:24 -0000	1.12
+++ shdocvw.spec	10 Nov 2004 17:44:22 -0000
@@ -123,7 +123,7 @@
 @ stub IEWriteErrorLog
 @ stub OpenURL
 @ stub SHGetIDispatchForFolder
-@ stub SetQueryNetSessionCount
+@ stdcall SetQueryNetSessionCount(long)
 @ stub SoftwareUpdateMessageBox
 @ stub URLQualifyA
 @ stub URLQualifyW
Index: shdocvw_main.c
===================================================================
RCS file: /home/wine/wine/dlls/shdocvw/shdocvw_main.c,v
retrieving revision 1.22
diff -u -r1.22 shdocvw_main.c
--- shdocvw_main.c	1 Nov 2004 23:22:14 -0000	1.22
+++ shdocvw_main.c	10 Nov 2004 17:44:23 -0000
@@ -459,7 +459,7 @@
 /***********************************************************************
  *              DllGetVersion (SHDOCVW.@)
  */
-HRESULT WINAPI SHDOCVW_DllGetVersion (DLLVERSIONINFO *info)
+HRESULT WINAPI SHDOCVW_DllGetVersion(DLLVERSIONINFO *info)
 {
     if (info->cbSize != sizeof(DLLVERSIONINFO)) FIXME("support DLLVERSIONINFO2\n");
 
@@ -541,4 +541,13 @@
 {
     FIXME("(), stub!\n");
     return 0x0deadbee;
+}
+
+/***********************************************************************
+ *              SetQueryNetSessionCount (SHDOCVW.@)
+ */
+DWORD WINAPI SetQueryNetSessionCount(DWORD arg)
+{
+    FIXME("(%lu), stub!\n", arg);
+    return 0;
 }


More information about the wine-patches mailing list