[PATCH 0/1] MR5581: include: Fix name conflict with access modifier in mfmediaengine.idl.
This fixes the following C++ compiler error mfmediaengine.h:1216:18: error: expected ',' or '...' before 'protected' 1216 | BOOL *protected) = 0; | ^~~~~~~~~ -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5581
From: Biswapriyo Nath <nathbappai(a)gmail.com> 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(); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/5581
participants (2)
-
Biswapriyo Nath -
Biswapriyo Nath (@Biswa96)