PATCH: olesetmenudescriptor 16bit

Marcus Meissner meissner at suse.de
Fri Jul 22 07:49:45 CDT 2005


Hi,

Ciao, Marcus

Changelog:
	Added OleSetMenuDescriptor16 stub.

Index: dlls/ole32/ole2.spec
===================================================================
RCS file: /home/wine/wine/dlls/ole32/ole2.spec,v
retrieving revision 1.9
diff -u -r1.9 ole2.spec
--- dlls/ole32/ole2.spec	23 Jan 2004 22:51:42 -0000	1.9
+++ dlls/ole32/ole2.spec	22 Jul 2005 12:48:39 -0000
@@ -38,7 +38,7 @@
 38 stub CREATEOLEADVISEHOLDER
 39 stub CREATEDATAADVISEHOLDER
 40 stub OLECREATEMENUDESCRIPTOR
-41 stub OLESETMENUDESCRIPTOR
+41 pascal OleSetMenuDescriptor(word word word ptr ptr) OleSetMenuDescriptor16
 42 stub OLEDESTROYMENUDESCRIPTOR
 43 stub OPENORCREATESTREAM
 44 stub CREATEANTIMONIKER
Index: dlls/ole32/ole2_16.c
===================================================================
RCS file: /home/wine/wine/dlls/ole32/ole2_16.c,v
retrieving revision 1.5
diff -u -r1.5 ole2_16.c
--- dlls/ole32/ole2_16.c	16 May 2005 14:12:53 -0000	1.5
+++ dlls/ole32/ole2_16.c	22 Jul 2005 12:48:39 -0000
@@ -152,3 +152,17 @@
     FIXME("(%s,%p),stub!\n",lpszPathName,ppmk);
     return E_NOTIMPL;
 }
+
+/******************************************************************************
+ *        OleSetMenuDescriptor (OLE2.41)
+ */
+HRESULT WINAPI OleSetMenuDescriptor16(
+    HOLEMENU               hOleMenu, /* FIXME: HOLEMENU16 likely */
+    HWND16                 hwndFrame,
+    HWND16                 hwndActiveObject,
+    LPOLEINPLACEFRAME        lpFrame,
+    LPOLEINPLACEACTIVEOBJECT lpActiveObject)
+{
+    FIXME("(%lx, %x, %x, %p, %p), stub!\n", hOleMenu, hwndFrame, hwndActiveObject, lpFrame, lpActiveObject);
+    return E_NOTIMPL;
+}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://www.winehq.org/pipermail/wine-patches/attachments/20050722/472931a4/attachment.pgp


More information about the wine-patches mailing list