Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastian Mayr
wine
Commits
b4c6e469
Commit
b4c6e469
authored
18 years ago
by
Michael Stefaniuc
Committed by
Alexandre Julliard
18 years ago
Browse files
Options
Downloads
Patches
Plain Diff
olesvr32: Win64 printf format warning fixes.
parent
44e65a0f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/olesvr32/Makefile.in
+0
-1
0 additions, 1 deletion
dlls/olesvr32/Makefile.in
dlls/olesvr32/olesvr_main.c
+15
-15
15 additions, 15 deletions
dlls/olesvr32/olesvr_main.c
with
15 additions
and
16 deletions
dlls/olesvr32/Makefile.in
+
0
−
1
View file @
b4c6e469
...
...
@@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE
=
olesvr32.dll
IMPORTLIB
=
libolesvr32.
$(
IMPLIBEXT
)
IMPORTS
=
kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
olesvr_main.c
...
...
This diff is collapsed.
Click to expand it.
dlls/olesvr32/olesvr_main.c
+
15
−
15
View file @
b4c6e469
...
...
@@ -150,7 +150,7 @@ OLESTATUS WINAPI OleRegisterServer16( LPCSTR name, LPOLESERVER serverStruct,
*/
OLESTATUS
WINAPI
OleBlockServer16
(
LHSERVER
hServer
)
{
FIXME
(
"(%
l
d): stub
\n
"
,
hServer
);
FIXME
(
"(%d): stub
\n
"
,
hServer
);
return
OLE_OK
;
}
...
...
@@ -159,7 +159,7 @@ OLESTATUS WINAPI OleBlockServer16(LHSERVER hServer)
*/
OLESTATUS
WINAPI
OleBlockServer
(
LHSERVER
hServer
)
{
FIXME
(
"(%
l
d): stub
\n
"
,
hServer
);
FIXME
(
"(%d): stub
\n
"
,
hServer
);
return
OLE_OK
;
}
...
...
@@ -168,7 +168,7 @@ OLESTATUS WINAPI OleBlockServer(LHSERVER hServer)
*/
OLESTATUS
WINAPI
OleUnblockServer16
(
LHSERVER
hServer
,
BOOL16
*
block
)
{
FIXME
(
"(%
l
d): stub
\n
"
,
hServer
);
FIXME
(
"(%d): stub
\n
"
,
hServer
);
/* no more blocked messages :) */
*
block
=
FALSE
;
return
OLE_OK
;
...
...
@@ -179,7 +179,7 @@ OLESTATUS WINAPI OleUnblockServer16(LHSERVER hServer, BOOL16 *block)
*/
OLESTATUS
WINAPI
OleUnblockServer
(
LHSERVER
hServer
,
BOOL
*
block
)
{
FIXME
(
"(%
l
d): stub
\n
"
,
hServer
);
FIXME
(
"(%d): stub
\n
"
,
hServer
);
/* no more blocked messages :) */
*
block
=
FALSE
;
return
OLE_OK
;
...
...
@@ -192,7 +192,7 @@ OLESTATUS WINAPI OleRegisterServerDoc16( LHSERVER hServer, LPCSTR docname,
LPOLESERVERDOC
document
,
LHSERVERDOC
*
hRet
)
{
FIXME
(
"(%
l
d,%s): stub
\n
"
,
hServer
,
docname
);
FIXME
(
"(%d,%s): stub
\n
"
,
hServer
,
docname
);
*
hRet
=++
OLE_current_handle
;
return
OLE_OK
;
}
...
...
@@ -202,7 +202,7 @@ OLESTATUS WINAPI OleRegisterServerDoc16( LHSERVER hServer, LPCSTR docname,
*/
OLESTATUS
WINAPI
OleRevokeServerDoc16
(
LHSERVERDOC
hServerDoc
)
{
FIXME
(
"%
l
d - stub
\n
"
,
hServerDoc
);
FIXME
(
"%d - stub
\n
"
,
hServerDoc
);
return
OLE_OK
;
}
...
...
@@ -211,7 +211,7 @@ OLESTATUS WINAPI OleRevokeServerDoc16(LHSERVERDOC hServerDoc)
*/
OLESTATUS
WINAPI
OleRevokeServerDoc
(
LHSERVERDOC
hServerDoc
)
{
FIXME
(
"(%
l
d): stub
\n
"
,
hServerDoc
);
FIXME
(
"(%d): stub
\n
"
,
hServerDoc
);
return
OLE_OK
;
}
...
...
@@ -220,7 +220,7 @@ OLESTATUS WINAPI OleRevokeServerDoc(LHSERVERDOC hServerDoc)
*/
OLESTATUS
WINAPI
OleRevokeServer16
(
LHSERVER
hServer
)
{
FIXME
(
"%
l
d - stub
\n
"
,
hServer
);
FIXME
(
"%d - stub
\n
"
,
hServer
);
return
OLE_OK
;
}
...
...
@@ -240,7 +240,7 @@ OLESTATUS WINAPI OleRegisterServerDoc( LHSERVER hServer, LPCSTR docname,
LPOLESERVERDOC
document
,
LHSERVERDOC
*
hRet
)
{
FIXME
(
"(%
l
d,%s): stub
\n
"
,
hServer
,
docname
);
FIXME
(
"(%d,%s): stub
\n
"
,
hServer
,
docname
);
*
hRet
=++
OLE_current_handle
;
return
OLE_OK
;
}
...
...
@@ -251,7 +251,7 @@ OLESTATUS WINAPI OleRegisterServerDoc( LHSERVER hServer, LPCSTR docname,
*/
OLESTATUS
WINAPI
OleRenameServerDoc16
(
LHSERVERDOC
hDoc
,
LPCSTR
newName
)
{
FIXME
(
"(%
l
d,%s): stub.
\n
"
,
hDoc
,
newName
);
FIXME
(
"(%d,%s): stub.
\n
"
,
hDoc
,
newName
);
return
OLE_OK
;
}
...
...
@@ -261,7 +261,7 @@ OLESTATUS WINAPI OleRenameServerDoc16(LHSERVERDOC hDoc, LPCSTR newName)
*/
OLESTATUS
WINAPI
OleRenameServerDoc
(
LHSERVERDOC
hDoc
,
LPCSTR
newName
)
{
FIXME
(
"(%
l
d,%s): stub.
\n
"
,
hDoc
,
newName
);
FIXME
(
"(%d,%s): stub.
\n
"
,
hDoc
,
newName
);
return
OLE_OK
;
}
...
...
@@ -271,7 +271,7 @@ OLESTATUS WINAPI OleRenameServerDoc(LHSERVERDOC hDoc, LPCSTR newName)
*/
OLESTATUS
WINAPI
OleRevertServerDoc16
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%
l
d): stub.
\n
"
,
hDoc
);
FIXME
(
"(%d): stub.
\n
"
,
hDoc
);
return
OLE_OK
;
}
...
...
@@ -281,7 +281,7 @@ OLESTATUS WINAPI OleRevertServerDoc16(LHSERVERDOC hDoc)
*/
OLESTATUS
WINAPI
OleRevertServerDoc
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%
l
d): stub.
\n
"
,
hDoc
);
FIXME
(
"(%d): stub.
\n
"
,
hDoc
);
return
OLE_OK
;
}
...
...
@@ -291,7 +291,7 @@ OLESTATUS WINAPI OleRevertServerDoc(LHSERVERDOC hDoc)
*/
OLESTATUS
WINAPI
OleSavedServerDoc16
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%
l
d): stub.
\n
"
,
hDoc
);
FIXME
(
"(%d): stub.
\n
"
,
hDoc
);
return
OLE_OK
;
}
...
...
@@ -301,6 +301,6 @@ OLESTATUS WINAPI OleSavedServerDoc16(LHSERVERDOC hDoc)
*/
OLESTATUS
WINAPI
OleSavedServerDoc
(
LHSERVERDOC
hDoc
)
{
FIXME
(
"(%
l
d): stub.
\n
"
,
hDoc
);
FIXME
(
"(%d): stub.
\n
"
,
hDoc
);
return
OLE_OK
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment