Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
1c3054af
Commit
1c3054af
authored
Jul 22, 2005
by
Marcus Meissner
Committed by
Alexandre Julliard
Jul 22, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added OleSetMenuDescriptor16 stub.
parent
c8187b09
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
ole2.spec
dlls/ole32/ole2.spec
+1
-1
ole2_16.c
dlls/ole32/ole2_16.c
+14
-0
No files found.
dlls/ole32/ole2.spec
View file @
1c3054af
...
...
@@ -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
...
...
dlls/ole32/ole2_16.c
View file @
1c3054af
...
...
@@ -152,3 +152,17 @@ HRESULT WINAPI CreateFileMoniker16(LPCOLESTR16 lpszPathName,LPMONIKER* ppmk)
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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment