1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

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