Commit e4d3a721 authored by Bang Jun-Young's avatar Bang Jun-Young Committed by Alexandre Julliard

amstream: Fix argument types to match the PSDK.

parent a5ebefc0
...@@ -110,7 +110,7 @@ static ULONG WINAPI IAMMultiMediaStreamImpl_Release(IAMMultiMediaStream* iface) ...@@ -110,7 +110,7 @@ static ULONG WINAPI IAMMultiMediaStreamImpl_Release(IAMMultiMediaStream* iface)
} }
/*** IMultiMediaStream methods ***/ /*** IMultiMediaStream methods ***/
static HRESULT WINAPI IAMMultiMediaStreamImpl_GetInformation(IAMMultiMediaStream* iface, char* pdwFlags, STREAM_TYPE* pStreamType) static HRESULT WINAPI IAMMultiMediaStreamImpl_GetInformation(IAMMultiMediaStream* iface, DWORD* pdwFlags, STREAM_TYPE* pStreamType)
{ {
IAMMultiMediaStreamImpl *This = (IAMMultiMediaStreamImpl *)iface; IAMMultiMediaStreamImpl *This = (IAMMultiMediaStreamImpl *)iface;
......
...@@ -90,7 +90,7 @@ pointer_default(unique) ...@@ -90,7 +90,7 @@ pointer_default(unique)
interface IMultiMediaStream : IUnknown { interface IMultiMediaStream : IUnknown {
HRESULT GetInformation( HRESULT GetInformation(
[out, optional] char *pdwFlags, [out, optional] DWORD *pdwFlags,
[out, optional] STREAM_TYPE *pStreamType); [out, optional] STREAM_TYPE *pStreamType);
HRESULT GetMediaStream( HRESULT GetMediaStream(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment