This fixes the following C++ compiler error
mfmediaengine.h:1216:18: error: expected ',' or '...' before 'protected' 1216 | BOOL *protected) = 0; | ^~~~~~~~~
From: Biswapriyo Nath nathbappai@gmail.com
This fixes the following C++ compiler error
mfmediaengine.h:1216:18: error: expected ',' or '...' before 'protected' 1216 | BOOL *protected) = 0; | ^~~~~~~~~ --- include/mfmediaengine.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/mfmediaengine.idl b/include/mfmediaengine.idl index 6547ef87462..27b6bbcd7d7 100644 --- a/include/mfmediaengine.idl +++ b/include/mfmediaengine.idl @@ -305,7 +305,7 @@ interface IMFMediaEngineEx : IMFMediaEngine HRESULT GetStreamSelection([in] DWORD stream_index, [out] BOOL *enabled); HRESULT SetStreamSelection([in] DWORD stream_index, [in] BOOL enabled); HRESULT ApplyStreamSelections(); - HRESULT IsProtected([out] BOOL *protected); + HRESULT IsProtected([out] BOOL *is_protected); HRESULT InsertVideoEffect([in] IUnknown *effect, [in] BOOL is_optional); HRESULT InsertAudioEffect([in] IUnknown *effect, [in] BOOL is_optional); HRESULT RemoveAllEffects();