amstream: Fix argument types to match the PSDK.

oldstable
Bang Jun-Young 2006-07-10 17:16:18 +09:00 committed by Alexandre Julliard
parent a5ebefc07f
commit e4d3a72165
2 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ static ULONG WINAPI IAMMultiMediaStreamImpl_Release(IAMMultiMediaStream* iface)
}
/*** 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;

View File

@ -90,7 +90,7 @@ pointer_default(unique)
interface IMultiMediaStream : IUnknown {
HRESULT GetInformation(
[out, optional] char *pdwFlags,
[out, optional] DWORD *pdwFlags,
[out, optional] STREAM_TYPE *pStreamType);
HRESULT GetMediaStream(