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
430c8754
Commit
430c8754
authored
Feb 16, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
olecli32: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
438b3794
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
Makefile.in
dlls/olecli32/Makefile.in
+0
-1
olecli_main.c
dlls/olecli32/olecli_main.c
+7
-7
No files found.
dlls/olecli32/Makefile.in
View file @
430c8754
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
olecli32.dll
IMPORTLIB
=
olecli32
IMPORTS
=
ole32 gdi32
...
...
dlls/olecli32/olecli_main.c
View file @
430c8754
...
...
@@ -88,7 +88,7 @@ static LONG OLE_current_handle;
*/
OLESTATUS
WINAPI
OleSavedClientDoc
(
LHCLIENTDOC
hDoc
)
{
FIXME
(
"(%d: stub
\n
"
,
hDoc
);
FIXME
(
"(%
l
d: stub
\n
"
,
hDoc
);
return
OLE_OK
;
}
...
...
@@ -108,7 +108,7 @@ OLESTATUS WINAPI OleRegisterClientDoc(LPCSTR classname, LPCSTR docname,
*/
OLESTATUS
WINAPI
OleRenameClientDoc
(
LHCLIENTDOC
hDoc
,
LPCSTR
newName
)
{
FIXME
(
"(%d,%s,...): stub
\n
"
,
hDoc
,
newName
);
FIXME
(
"(%
l
d,%s,...): stub
\n
"
,
hDoc
,
newName
);
return
OLE_OK
;
}
...
...
@@ -117,7 +117,7 @@ OLESTATUS WINAPI OleRenameClientDoc(LHCLIENTDOC hDoc, LPCSTR newName)
*/
OLESTATUS
WINAPI
OleRevokeClientDoc
(
LHCLIENTDOC
hServerDoc
)
{
FIXME
(
"(%d): stub
\n
"
,
hServerDoc
);
FIXME
(
"(%
l
d): stub
\n
"
,
hServerDoc
);
return
OLE_OK
;
}
...
...
@@ -128,7 +128,7 @@ OLESTATUS WINAPI OleCreateLinkFromClip(
LPCSTR
name
,
LPOLECLIENT
olecli
,
LHCLIENTDOC
hclientdoc
,
LPCSTR
xname
,
_LPOLEOBJECT
*
lpoleob
,
OLEOPT_RENDER
render
,
OLECLIPFORMAT
clipformat
)
{
FIXME
(
"(%s,%p,%08
x,%s,%p,%d,%
d): stub!
\n
"
,
FIXME
(
"(%s,%p,%08
lx,%s,%p,%d,%l
d): stub!
\n
"
,
name
,
olecli
,
hclientdoc
,
xname
,
lpoleob
,
render
,
clipformat
);
return
OLE_OK
;
}
...
...
@@ -137,7 +137,7 @@ OLESTATUS WINAPI OleCreateLinkFromClip(
* OleQueryLinkFromClip [OLECLI32.9]
*/
OLESTATUS
WINAPI
OleQueryLinkFromClip
(
LPCSTR
name
,
OLEOPT_RENDER
render
,
OLECLIPFORMAT
clipformat
)
{
FIXME
(
"(%s,%d,%d): stub!
\n
"
,
name
,
render
,
clipformat
);
FIXME
(
"(%s,%d,%
l
d): stub!
\n
"
,
name
,
render
,
clipformat
);
return
OLE_OK
;
}
...
...
@@ -145,7 +145,7 @@ OLESTATUS WINAPI OleQueryLinkFromClip(LPCSTR name,OLEOPT_RENDER render,OLECLIPFO
* OleQueryCreateFromClip [OLECLI32.10]
*/
OLESTATUS
WINAPI
OleQueryCreateFromClip
(
LPCSTR
name
,
OLEOPT_RENDER
render
,
OLECLIPFORMAT
clipformat
)
{
FIXME
(
"(%s,%d,%d): stub!
\n
"
,
name
,
render
,
clipformat
);
FIXME
(
"(%s,%d,%
l
d): stub!
\n
"
,
name
,
render
,
clipformat
);
return
OLE_OK
;
}
...
...
@@ -185,7 +185,7 @@ OLESTATUS WINAPI OleCreateFromClip(
LPCSTR
name
,
LPOLECLIENT
olecli
,
LHCLIENTDOC
hclientdoc
,
LPCSTR
xname
,
_LPOLEOBJECT
*
lpoleob
,
OLEOPT_RENDER
render
,
OLECLIPFORMAT
clipformat
)
{
FIXME
(
"(%s,%p,%08
x,%s,%p,%d,%
d): stub!
\n
"
,
FIXME
(
"(%s,%p,%08
lx,%s,%p,%d,%l
d): stub!
\n
"
,
name
,
olecli
,
hclientdoc
,
xname
,
lpoleob
,
render
,
clipformat
);
/* clipb type, object kreieren entsprechend etc. */
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