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
91b19177
Commit
91b19177
authored
Feb 16, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
olesvr.dll16: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
100eb92b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
9 deletions
+8
-9
Makefile.in
dlls/olesvr.dll16/Makefile.in
+0
-1
olesvr.c
dlls/olesvr.dll16/olesvr.c
+8
-8
No files found.
dlls/olesvr.dll16/Makefile.in
View file @
91b19177
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
olesvr.dll16
IMPORTS
=
gdi32
EXTRADLLFLAGS
=
-m16
-Wb
,--main-module,olesvr32.dll
...
...
dlls/olesvr.dll16/olesvr.c
View file @
91b19177
...
...
@@ -148,7 +148,7 @@ OLESTATUS WINAPI OleRegisterServer16( LPCSTR name, LPOLESERVER serverStruct,
*/
OLESTATUS
WINAPI
OleRevokeServer16
(
LHSERVER
hServer
)
{
FIXME
(
"%d - stub
\n
"
,
hServer
);
FIXME
(
"%
l
d - stub
\n
"
,
hServer
);
return
OLE_OK
;
}
...
...
@@ -157,7 +157,7 @@ OLESTATUS WINAPI OleRevokeServer16(LHSERVER hServer)
*/
OLESTATUS
WINAPI
OleBlockServer16
(
LHSERVER
hServer
)
{
FIXME
(
"(%d): stub
\n
"
,
hServer
);
FIXME
(
"(%
l
d): stub
\n
"
,
hServer
);
return
OLE_OK
;
}
...
...
@@ -166,7 +166,7 @@ OLESTATUS WINAPI OleBlockServer16(LHSERVER hServer)
*/
OLESTATUS
WINAPI
OleUnblockServer16
(
LHSERVER
hServer
,
BOOL16
*
block
)
{
FIXME
(
"(%d): stub
\n
"
,
hServer
);
FIXME
(
"(%
l
d): stub
\n
"
,
hServer
);
/* no more blocked messages :) */
*
block
=
FALSE
;
return
OLE_OK
;
...
...
@@ -179,7 +179,7 @@ OLESTATUS WINAPI OleRegisterServerDoc16( 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
;
}
...
...
@@ -189,7 +189,7 @@ OLESTATUS WINAPI OleRegisterServerDoc16( LHSERVER hServer, LPCSTR docname,
*/
OLESTATUS
WINAPI
OleRevokeServerDoc16
(
LHSERVERDOC
hServerDoc
)
{
FIXME
(
"%d - stub
\n
"
,
hServerDoc
);
FIXME
(
"%
l
d - stub
\n
"
,
hServerDoc
);
return
OLE_OK
;
}
...
...
@@ -199,7 +199,7 @@ OLESTATUS WINAPI OleRevokeServerDoc16(LHSERVERDOC hServerDoc)
*/
OLESTATUS
WINAPI
OleRenameServerDoc16
(
LHSERVERDOC
hDoc
,
LPCSTR
newName
)
{
FIXME
(
"(%d,%s): stub.
\n
"
,
hDoc
,
newName
);
FIXME
(
"(%
l
d,%s): stub.
\n
"
,
hDoc
,
newName
);
return
OLE_OK
;
}
...
...
@@ -209,7 +209,7 @@ OLESTATUS WINAPI OleRenameServerDoc16(LHSERVERDOC hDoc, LPCSTR newName)
*/
OLESTATUS
WINAPI
OleRevertServerDoc16
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%d): stub.
\n
"
,
hDoc
);
FIXME
(
"(%
l
d): stub.
\n
"
,
hDoc
);
return
OLE_OK
;
}
...
...
@@ -219,6 +219,6 @@ OLESTATUS WINAPI OleRevertServerDoc16(LHSERVERDOC hDoc)
*/
OLESTATUS
WINAPI
OleSavedServerDoc16
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%d): stub.
\n
"
,
hDoc
);
FIXME
(
"(%
l
d): 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