mshtml: Remove WINAPI on static functions where not needed.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-08-27 12:47:50 +02:00 committed by Alexandre Julliard
parent d1e0c5a732
commit 3884a68082
1 changed files with 1 additions and 1 deletions

View File

@ -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;