Francois Gouget : mshtml: Remove WINAPI on static functions where not needed.

Alexandre Julliard julliard at winehq.org
Fri Aug 27 15:03:34 CDT 2021


Module: wine
Branch: master
Commit: 3884a6808281bf57ef0cc7a78d3d8e8e45da21b1
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=3884a6808281bf57ef0cc7a78d3d8e8e45da21b1

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri Aug 27 12:47:50 2021 +0200

mshtml: Remove WINAPI on static functions where not needed.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mshtml/htmlelem.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mshtml/htmlelem.c b/dlls/mshtml/htmlelem.c
index 9ad538d2b00..d9554f4668d 100644
--- a/dlls/mshtml/htmlelem.c
+++ b/dlls/mshtml/htmlelem.c
@@ -6515,7 +6515,7 @@ static const WCHAR *find_token(const WCHAR *list, const WCHAR *token, unsigned i
     return NULL;
 }
 
-static HRESULT WINAPI token_list_add_remove(IWineDOMTokenList *iface, BSTR token, BOOL remove)
+static HRESULT token_list_add_remove(IWineDOMTokenList *iface, BSTR token, BOOL remove)
 {
     struct token_list *token_list = impl_from_IWineDOMTokenList(iface);
     unsigned int i, len, old_len, new_len;




More information about the wine-cvs mailing list