amstream: Fix argument types to match the PSDK.
This commit is contained in:
parent
a5ebefc07f
commit
e4d3a72165
|
@ -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;
|
||||
|
||||
|
|
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue