Commit 1e06fcdc authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

qcap: Declare a function static.

parent 9e537ae0
......@@ -45,7 +45,7 @@ HRESULT CopyMediaType(AM_MEDIA_TYPE * pDest, const AM_MEDIA_TYPE *pSrc)
return S_OK;
}
void FreeMediaType(AM_MEDIA_TYPE * pMediaType)
static void FreeMediaType(AM_MEDIA_TYPE * pMediaType)
{
CoTaskMemFree(pMediaType->pbFormat);
pMediaType->pbFormat = NULL;
......
......@@ -51,7 +51,6 @@ HRESULT IEnumPinsImpl_Construct(const ENUMPINDETAILS * pDetails, IEnumPins ** pp
HRESULT IEnumMediaTypesImpl_Construct(const ENUMMEDIADETAILS * pDetails, IEnumMediaTypes ** ppEnum);
HRESULT CopyMediaType(AM_MEDIA_TYPE * pDest, const AM_MEDIA_TYPE *pSrc);
void FreeMediaType(AM_MEDIA_TYPE * pmt);
void DeleteMediaType(AM_MEDIA_TYPE * pmt);
BOOL CompareMediaTypes(const AM_MEDIA_TYPE * pmt1, const AM_MEDIA_TYPE * pmt2, BOOL bWildcards);
void dump_AM_MEDIA_TYPE(const AM_MEDIA_TYPE * pmt);
......
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