msdmo: Win64 printf format warning fixes.
This commit is contained in:
parent
860d40b1e8
commit
426d27cbe6
|
@ -6,7 +6,6 @@ MODULE = msdmo.dll
|
||||||
IMPORTLIB = libmsdmo.$(IMPLIBEXT)
|
IMPORTLIB = libmsdmo.$(IMPLIBEXT)
|
||||||
IMPORTS = ole32 user32 advapi32 kernel32
|
IMPORTS = ole32 user32 advapi32 kernel32
|
||||||
EXTRALIBS = -luuid
|
EXTRALIBS = -luuid
|
||||||
EXTRADEFS = -DWINE_NO_LONG_AS_INT
|
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
dmoreg.c \
|
dmoreg.c \
|
||||||
|
|
|
@ -194,7 +194,7 @@ lend:
|
||||||
if (hrkey)
|
if (hrkey)
|
||||||
RegCloseKey(hrkey);
|
RegCloseKey(hrkey);
|
||||||
|
|
||||||
TRACE(" hresult=0x%08lx\n", hres);
|
TRACE(" hresult=0x%08x\n", hres);
|
||||||
return hres;
|
return hres;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -448,7 +448,7 @@ static HRESULT WINAPI IEnumDMO_fnNext(
|
||||||
|
|
||||||
IEnumDMOImpl *This = (IEnumDMOImpl *)iface;
|
IEnumDMOImpl *This = (IEnumDMOImpl *)iface;
|
||||||
|
|
||||||
TRACE("%ld\n", cItemsToFetch);
|
TRACE("%d\n", cItemsToFetch);
|
||||||
|
|
||||||
if (!pCLSID || !Names || !pcItemsFetched)
|
if (!pCLSID || !Names || !pcItemsFetched)
|
||||||
return E_POINTER;
|
return E_POINTER;
|
||||||
|
@ -627,7 +627,7 @@ HRESULT WINAPI DMOEnum(
|
||||||
{
|
{
|
||||||
HRESULT hres = E_FAIL;
|
HRESULT hres = E_FAIL;
|
||||||
|
|
||||||
TRACE("guidCategory=%p dwFlags=0x%08lx cInTypes=%ld cOutTypes=%ld\n",
|
TRACE("guidCategory=%p dwFlags=0x%08x cInTypes=%d cOutTypes=%d\n",
|
||||||
guidCategory, dwFlags, cInTypes, cOutTypes);
|
guidCategory, dwFlags, cInTypes, cOutTypes);
|
||||||
|
|
||||||
*ppEnum = IEnumDMO_Constructor(guidCategory, dwFlags, cInTypes,
|
*ppEnum = IEnumDMO_Constructor(guidCategory, dwFlags, cInTypes,
|
||||||
|
|
|
@ -40,7 +40,7 @@ HRESULT WINAPI MoCreateMediaType(DMO_MEDIA_TYPE** ppmedia, DWORD cbFormat)
|
||||||
{
|
{
|
||||||
HRESULT r;
|
HRESULT r;
|
||||||
|
|
||||||
TRACE("%p %lu\n", ppmedia, cbFormat);
|
TRACE("%p %u\n", ppmedia, cbFormat);
|
||||||
|
|
||||||
if (!ppmedia)
|
if (!ppmedia)
|
||||||
return E_POINTER;
|
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)
|
HRESULT WINAPI MoInitMediaType(DMO_MEDIA_TYPE* pmedia, DWORD cbFormat)
|
||||||
{
|
{
|
||||||
TRACE("%p %lu\n", pmedia, cbFormat);
|
TRACE("%p %u\n", pmedia, cbFormat);
|
||||||
|
|
||||||
if (!pmedia)
|
if (!pmedia)
|
||||||
return E_POINTER;
|
return E_POINTER;
|
||||||
|
|
Loading…
Reference in New Issue