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
100eb92b
Commit
100eb92b
authored
Feb 16, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
olesvr32: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
189b6272
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
9 deletions
+8
-9
Makefile.in
dlls/olesvr32/Makefile.in
+0
-1
olesvr_main.c
dlls/olesvr32/olesvr_main.c
+8
-8
No files found.
dlls/olesvr32/Makefile.in
View file @
100eb92b
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
olesvr32.dll
IMPORTLIB
=
olesvr32
...
...
dlls/olesvr32/olesvr_main.c
View file @
100eb92b
...
...
@@ -134,7 +134,7 @@ static LONG OLE_current_handle;
*/
OLESTATUS
WINAPI
OleBlockServer
(
LHSERVER
hServer
)
{
FIXME
(
"(%d): stub
\n
"
,
hServer
);
FIXME
(
"(%
l
d): stub
\n
"
,
hServer
);
return
OLE_OK
;
}
...
...
@@ -143,7 +143,7 @@ OLESTATUS WINAPI OleBlockServer(LHSERVER hServer)
*/
OLESTATUS
WINAPI
OleUnblockServer
(
LHSERVER
hServer
,
BOOL
*
block
)
{
FIXME
(
"(%d): stub
\n
"
,
hServer
);
FIXME
(
"(%
l
d): stub
\n
"
,
hServer
);
/* no more blocked messages :) */
*
block
=
FALSE
;
return
OLE_OK
;
...
...
@@ -154,7 +154,7 @@ OLESTATUS WINAPI OleUnblockServer(LHSERVER hServer, BOOL *block)
*/
OLESTATUS
WINAPI
OleRevokeServerDoc
(
LHSERVERDOC
hServerDoc
)
{
FIXME
(
"(%d): stub
\n
"
,
hServerDoc
);
FIXME
(
"(%
l
d): stub
\n
"
,
hServerDoc
);
return
OLE_OK
;
}
...
...
@@ -174,7 +174,7 @@ OLESTATUS WINAPI OleRegisterServerDoc( LHSERVER hServer, LPCSTR docname,
LPOLESERVERDOC
document
,
LHSERVERDOC
*
hRet
)
{
FIXME
(
"(%d,%s): stub
\n
"
,
hServer
,
docname
);
FIXME
(
"(%
l
d,%s): stub
\n
"
,
hServer
,
docname
);
*
hRet
=++
OLE_current_handle
;
return
OLE_OK
;
}
...
...
@@ -185,7 +185,7 @@ OLESTATUS WINAPI OleRegisterServerDoc( LHSERVER hServer, LPCSTR docname,
*/
OLESTATUS
WINAPI
OleRenameServerDoc
(
LHSERVERDOC
hDoc
,
LPCSTR
newName
)
{
FIXME
(
"(%d,%s): stub.
\n
"
,
hDoc
,
newName
);
FIXME
(
"(%
l
d,%s): stub.
\n
"
,
hDoc
,
newName
);
return
OLE_OK
;
}
...
...
@@ -195,7 +195,7 @@ OLESTATUS WINAPI OleRenameServerDoc(LHSERVERDOC hDoc, LPCSTR newName)
*/
OLESTATUS
WINAPI
OleRevertServerDoc
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%d): stub.
\n
"
,
hDoc
);
FIXME
(
"(%
l
d): stub.
\n
"
,
hDoc
);
return
OLE_OK
;
}
...
...
@@ -205,7 +205,7 @@ OLESTATUS WINAPI OleRevertServerDoc(LHSERVERDOC hDoc)
*/
OLESTATUS
WINAPI
OleSavedServerDoc
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%d): stub.
\n
"
,
hDoc
);
FIXME
(
"(%
l
d): stub.
\n
"
,
hDoc
);
return
OLE_OK
;
}
...
...
@@ -215,6 +215,6 @@ OLESTATUS WINAPI OleSavedServerDoc(LHSERVERDOC hDoc)
*/
OLESTATUS
WINAPI
OleRevokeServer
(
LHSERVER
hServer
)
{
FIXME
(
"(%d): stub.
\n
"
,
hServer
);
FIXME
(
"(%
l
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