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
a277da5b
Commit
a277da5b
authored
Jun 10, 2009
by
Ken Sharp
Committed by
Alexandre Julliard
Jun 10, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
olesvr32: Add OleRevokeServer stub.
parent
3a228fb5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
olesvr32.spec
dlls/olesvr32/olesvr32.spec
+1
-1
olesvr_main.c
dlls/olesvr32/olesvr_main.c
+10
-0
No files found.
dlls/olesvr32/olesvr32.spec
View file @
a277da5b
1 stub WEP
2 stdcall OleRegisterServer(str ptr ptr long long)
3 st
ub OleRevokeServer
3 st
dcall OleRevokeServer(long)
4 stdcall OleBlockServer(long)
5 stdcall OleUnblockServer(long ptr)
6 stdcall OleRegisterServerDoc(ptr str ptr ptr)
...
...
dlls/olesvr32/olesvr_main.c
View file @
a277da5b
...
...
@@ -210,3 +210,13 @@ OLESTATUS WINAPI OleSavedServerDoc(LHSERVERDOC hDoc)
FIXME
(
"(%d): stub.
\n
"
,
hDoc
);
return
OLE_OK
;
}
/******************************************************************************
* OleRevokeServer [OLESVR32.3]
*
*/
OLESTATUS
WINAPI
OleRevokeServer
(
LHSERVER
hServer
)
{
FIXME
(
"(%d): stub.
\n
"
,
hServer
);
return
OLE_OK
;
}
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