qcap: Declare a function static.

This commit is contained in:
Andrew Talbot 2009-01-11 15:28:29 +00:00 committed by Alexandre Julliard
parent 9e537ae06c
commit 1e06fcdc8c
2 changed files with 1 additions and 2 deletions

View File

@ -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;

View File

@ -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);