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
426d27cb
Commit
426d27cb
authored
Oct 05, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdmo: Win64 printf format warning fixes.
parent
860d40b1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
Makefile.in
dlls/msdmo/Makefile.in
+0
-1
dmoreg.c
dlls/msdmo/dmoreg.c
+3
-3
dmort.c
dlls/msdmo/dmort.c
+2
-2
No files found.
dlls/msdmo/Makefile.in
View file @
426d27cb
...
...
@@ -6,7 +6,6 @@ MODULE = msdmo.dll
IMPORTLIB
=
libmsdmo.
$(IMPLIBEXT)
IMPORTS
=
ole32 user32 advapi32 kernel32
EXTRALIBS
=
-luuid
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
dmoreg.c
\
...
...
dlls/msdmo/dmoreg.c
View file @
426d27cb
...
...
@@ -194,7 +194,7 @@ lend:
if
(
hrkey
)
RegCloseKey
(
hrkey
);
TRACE
(
" hresult=0x%08
l
x
\n
"
,
hres
);
TRACE
(
" hresult=0x%08x
\n
"
,
hres
);
return
hres
;
}
...
...
@@ -448,7 +448,7 @@ static HRESULT WINAPI IEnumDMO_fnNext(
IEnumDMOImpl
*
This
=
(
IEnumDMOImpl
*
)
iface
;
TRACE
(
"%
l
d
\n
"
,
cItemsToFetch
);
TRACE
(
"%d
\n
"
,
cItemsToFetch
);
if
(
!
pCLSID
||
!
Names
||
!
pcItemsFetched
)
return
E_POINTER
;
...
...
@@ -627,7 +627,7 @@ HRESULT WINAPI DMOEnum(
{
HRESULT
hres
=
E_FAIL
;
TRACE
(
"guidCategory=%p dwFlags=0x%08
lx cInTypes=%ld cOutTypes=%l
d
\n
"
,
TRACE
(
"guidCategory=%p dwFlags=0x%08
x cInTypes=%d cOutTypes=%
d
\n
"
,
guidCategory
,
dwFlags
,
cInTypes
,
cOutTypes
);
*
ppEnum
=
IEnumDMO_Constructor
(
guidCategory
,
dwFlags
,
cInTypes
,
...
...
dlls/msdmo/dmort.c
View file @
426d27cb
...
...
@@ -40,7 +40,7 @@ HRESULT WINAPI MoCreateMediaType(DMO_MEDIA_TYPE** ppmedia, DWORD cbFormat)
{
HRESULT
r
;
TRACE
(
"%p %
l
u
\n
"
,
ppmedia
,
cbFormat
);
TRACE
(
"%p %u
\n
"
,
ppmedia
,
cbFormat
);
if
(
!
ppmedia
)
return
E_POINTER
;
...
...
@@ -66,7 +66,7 @@ HRESULT WINAPI MoCreateMediaType(DMO_MEDIA_TYPE** ppmedia, DWORD cbFormat)
*/
HRESULT
WINAPI
MoInitMediaType
(
DMO_MEDIA_TYPE
*
pmedia
,
DWORD
cbFormat
)
{
TRACE
(
"%p %
l
u
\n
"
,
pmedia
,
cbFormat
);
TRACE
(
"%p %u
\n
"
,
pmedia
,
cbFormat
);
if
(
!
pmedia
)
return
E_POINTER
;
...
...
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