include: Avoid a C++ keyword.

This fixes the following C++ compiler error

mfmediaengine.h:1216:18: error: expected ',' or '...' before 'protected'
 1216 |            BOOL *protected) = 0;
      |                  ^~~~~~~~~
This commit is contained in:
Biswapriyo Nath 2024-05-05 04:53:03 +00:00 committed by Alexandre Julliard
parent 24ca848c56
commit 469a4837bc

View file

@ -305,7 +305,7 @@ interface IMFMediaEngineEx : IMFMediaEngine
HRESULT GetStreamSelection([in] DWORD stream_index, [out] BOOL *enabled); HRESULT GetStreamSelection([in] DWORD stream_index, [out] BOOL *enabled);
HRESULT SetStreamSelection([in] DWORD stream_index, [in] BOOL enabled); HRESULT SetStreamSelection([in] DWORD stream_index, [in] BOOL enabled);
HRESULT ApplyStreamSelections(); HRESULT ApplyStreamSelections();
HRESULT IsProtected([out] BOOL *protected); HRESULT IsProtected([out] BOOL *is_protected);
HRESULT InsertVideoEffect([in] IUnknown *effect, [in] BOOL is_optional); HRESULT InsertVideoEffect([in] IUnknown *effect, [in] BOOL is_optional);
HRESULT InsertAudioEffect([in] IUnknown *effect, [in] BOOL is_optional); HRESULT InsertAudioEffect([in] IUnknown *effect, [in] BOOL is_optional);
HRESULT RemoveAllEffects(); HRESULT RemoveAllEffects();