mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01: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:
parent
24ca848c56
commit
469a4837bc
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue