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
86794d25
Commit
86794d25
authored
Sep 30, 2003
by
Pavel Roskin
Committed by
Alexandre Julliard
Sep 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement stubs for OleRenameServerDoc, OleRevertServerDoc and
OleSavedServerDoc and their 16-bit equivalents.
parent
0accacec
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
5 deletions
+55
-5
olesvr.spec
dlls/olesvr/olesvr.spec
+3
-3
olesvr32.spec
dlls/olesvr/olesvr32.spec
+2
-2
olesvr_main.c
dlls/olesvr/olesvr_main.c
+50
-0
No files found.
dlls/olesvr/olesvr.spec
View file @
86794d25
...
...
@@ -5,9 +5,9 @@
5 pascal OleUnblockServer(long ptr) OleUnblockServer16
6 pascal OleRegisterServerDoc(long str ptr ptr) OleRegisterServerDoc16
7 pascal OleRevokeServerDoc(long) OleRevokeServerDoc16
8
stub OLERENAMESERVERDOC
9
stub OLEREVERTSERVERDOC
10
stub OLESAVEDSERVERDOC
8
pascal OleRenameServerDoc(long str) OleRenameServerDoc16
9
pascal OleRevertServerDoc(long) OleRevertServerDoc16
10
pascal OleSavedServerDoc(long) OleSavedServerDoc16
11 stub OLEREVOKEOBJECT
12 stub OLEQUERYSERVERVERSION
21 stub SRVRWNDPROC
...
...
dlls/olesvr/olesvr32.spec
View file @
86794d25
...
...
@@ -6,7 +6,7 @@
6 stdcall OleRegisterServerDoc(ptr str ptr ptr)
7 stdcall OleRevokeServerDoc(long)
8 stdcall OleRenameServerDoc(long str)
9 st
ub OleRevertServerDoc
10 st
ub OleSavedServerDoc
9 st
dcall OleRevertServerDoc(long)
10 st
dcall OleSavedServerDoc(long)
11 stub OleRevokeObject
12 stub OleQueryServerVersion
dlls/olesvr/olesvr_main.c
View file @
86794d25
...
...
@@ -245,6 +245,16 @@ OLESTATUS WINAPI OleRegisterServerDoc( LHSERVER hServer, LPCSTR docname,
}
/******************************************************************************
* OleRenameServerDoc [OLESVR.8]
*
*/
OLESTATUS
WINAPI
OleRenameServerDoc16
(
LHSERVERDOC
hDoc
,
LPCSTR
newName
)
{
FIXME
(
"(%ld,%s): stub.
\n
"
,
hDoc
,
newName
);
return
OLE_OK
;
}
/******************************************************************************
* OleRenameServerDoc [OLESVR32.8]
*
*/
...
...
@@ -253,3 +263,43 @@ OLESTATUS WINAPI OleRenameServerDoc(LHSERVERDOC hDoc, LPCSTR newName)
FIXME
(
"(%ld,%s): stub.
\n
"
,
hDoc
,
newName
);
return
OLE_OK
;
}
/******************************************************************************
* OleRevertServerDoc [OLESVR.9]
*
*/
OLESTATUS
WINAPI
OleRevertServerDoc16
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%ld): stub.
\n
"
,
hDoc
);
return
OLE_OK
;
}
/******************************************************************************
* OleRevertServerDoc [OLESVR32.9]
*
*/
OLESTATUS
WINAPI
OleRevertServerDoc
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%ld): stub.
\n
"
,
hDoc
);
return
OLE_OK
;
}
/******************************************************************************
* OleSavedServerDoc [OLESVR.10]
*
*/
OLESTATUS
WINAPI
OleSavedServerDoc16
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%ld): stub.
\n
"
,
hDoc
);
return
OLE_OK
;
}
/******************************************************************************
* OleSavedServerDoc [OLESVR32.10]
*
*/
OLESTATUS
WINAPI
OleSavedServerDoc
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%ld): stub.
\n
"
,
hDoc
);
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