Francois Gouget : windowscodecs: Remove WINAPI on static functions where not needed.
Module: wine Branch: master Commit: 7f1cd647f61fc0992ce9572784a7cf62a5705a2e URL: https://source.winehq.org/git/wine.git/?a=commit;h=7f1cd647f61fc0992ce957278... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Aug 30 17:22:44 2021 +0200 windowscodecs: Remove WINAPI on static functions where not needed. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Esme Povirk <esme(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/windowscodecs/decoder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/windowscodecs/decoder.c b/dlls/windowscodecs/decoder.c index 89e352b8946..2c72cdfc1b5 100644 --- a/dlls/windowscodecs/decoder.c +++ b/dlls/windowscodecs/decoder.c @@ -565,7 +565,7 @@ static HRESULT WINAPI CommonDecoderFrame_Block_GetContainerFormat(IWICMetadataBl return S_OK; } -static HRESULT WINAPI CommonDecoderFrame_InitializeMetadata(CommonDecoderFrame *This) +static HRESULT CommonDecoderFrame_InitializeMetadata(CommonDecoderFrame *This) { HRESULT hr=S_OK;
participants (1)
-
Alexandre Julliard