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
cf354d8c
Commit
cf354d8c
authored
Feb 20, 2001
by
Gerard Patel
Committed by
Alexandre Julliard
Feb 20, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub for OleSavedClientDoc.
parent
79a11a1f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
2 deletions
+20
-2
olecli.spec
dlls/olecli/olecli.spec
+1
-1
olecli32.spec
dlls/olecli/olecli32.spec
+1
-1
olecli_main.c
dlls/olecli/olecli_main.c
+18
-0
No files found.
dlls/olecli/olecli.spec
View file @
cf354d8c
...
...
@@ -45,7 +45,7 @@ owner olecli32
42 pascal OleRevokeClientDoc(long) OleRevokeClientDoc16
43 pascal OleRenameClientDoc(long ptr) OleRenameClientDoc16
44 pascal16 OleRevertClientDoc(long) OleRevertClientDoc16
45
stub OLESAVEDCLIENTDOC
45
pascal OleSavedClientDoc(long) OleSavedClientDoc16
46 stub OLERENAME
47 pascal16 OleEnumObjects(long segptr) OleEnumObjects16
48 stub OLEQUERYNAME
...
...
dlls/olecli/olecli32.spec
View file @
cf354d8c
...
...
@@ -51,7 +51,7 @@ debug_channels (ole)
42 stdcall OleRevokeClientDoc(long) OleRevokeClientDoc
43 stdcall OleRenameClientDoc(long str) OleRenameClientDoc
44 stub OleRevertClientDoc
45 st
ub
OleSavedClientDoc
45 st
dcall OleSavedClientDoc(long)
OleSavedClientDoc
46 stub OleRename
47 stub OleEnumObjects
48 stub OleQueryName
...
...
dlls/olecli/olecli_main.c
View file @
cf354d8c
...
...
@@ -18,6 +18,24 @@ DEFAULT_DEBUG_CHANNEL(ole);
static
LONG
OLE_current_handle
;
/******************************************************************************
* OleSavedClientDoc [OLECLI32.45]
*/
OLESTATUS
WINAPI
OleSavedClientDoc
(
LHCLIENTDOC
hDoc
)
{
FIXME
(
"(%ld: stub
\n
"
,
hDoc
);
return
OLE_OK
;
}
/******************************************************************************
* OleSavedClientDoc16 [OLECLI.45]
*/
OLESTATUS
WINAPI
OleSavedClientDoc16
(
LHCLIENTDOC
hDoc
)
{
FIXME
(
"(%ld: stub
\n
"
,
hDoc
);
return
OLE_OK
;
}
/******************************************************************************
* OleRegisterClientDoc16 [OLECLI.41]
*/
OLESTATUS
WINAPI
OleRegisterClientDoc16
(
LPCSTR
classname
,
LPCSTR
docname
,
...
...
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