Module: wine Branch: master Commit: 469a4837bc00954c6c90a632658785eaacd961f3 URL: https://gitlab.winehq.org/wine/wine/-/commit/469a4837bc00954c6c90a632658785e...
Author: Biswapriyo Nath nathbappai@gmail.com Date: Sun May 5 04:53:03 2024 +0000
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; | ^~~~~~~~~
---
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();