Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e3e42985
Commit
e3e42985
authored
Jul 31, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jul 31, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Implement OleNoteObjectVisible as described by MSDN.
parent
1a5cd3ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
ole2.c
dlls/ole32/ole2.c
+10
-0
ole32.spec
dlls/ole32/ole32.spec
+1
-1
No files found.
dlls/ole32/ole2.c
View file @
e3e42985
...
...
@@ -2389,6 +2389,16 @@ BOOL WINAPI OleIsRunning(LPOLEOBJECT pObject)
}
/***********************************************************************
* OleNoteObjectVisible [OLE32.@]
*/
HRESULT
WINAPI
OleNoteObjectVisible
(
LPUNKNOWN
pUnknown
,
BOOL
bVisible
)
{
TRACE
(
"(%p, %s)
\n
"
,
pUnknown
,
bVisible
?
"TRUE"
:
"FALSE"
);
return
CoLockObjectExternal
(
pUnknown
,
bVisible
,
TRUE
);
}
/***********************************************************************
* OLE_FreeClipDataArray [internal]
*
* NOTES:
...
...
dlls/ole32/ole32.spec
View file @
e3e42985
...
...
@@ -200,7 +200,7 @@
@ stdcall OleLoadFromStream(ptr ptr ptr)
@ stdcall OleLockRunning(ptr long long)
@ stdcall OleMetafilePictFromIconAndLabel(long ptr ptr long)
@ st
ub OleNoteObjectVisible
@ st
dcall OleNoteObjectVisible(ptr long)
@ stdcall OleQueryCreateFromData(ptr)
@ stdcall OleQueryLinkFromData(ptr)
@ stdcall OleRegEnumFormatEtc(ptr long ptr)
...
...
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