From 4a71ab79f51896103908ab766a89a493bee911a6 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Thu, 24 May 2007 19:16:02 +0200 Subject: [PATCH] mshtml: Added missing WINAPI in window proc. --- dlls/mshtml/view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/view.c b/dlls/mshtml/view.c index e0db0b8e0ff..79fe3994659 100644 --- a/dlls/mshtml/view.c +++ b/dlls/mshtml/view.c @@ -248,7 +248,7 @@ static HRESULT activate_window(HTMLDocument *This) return S_OK; } -static LRESULT tooltips_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) +static LRESULT WINAPI tooltips_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { tooltip_data *data = GetPropW(hwnd, wszTooltipData);