Commit 469a4837 authored by Biswapriyo Nath's avatar Biswapriyo Nath Committed by Alexandre Julliard

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; | ^~~~~~~~~
parent 24ca848c
......@@ -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();
......
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