From 18b036e2137707e2af9a7125c17273cec446d5cd Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 24 Aug 2010 10:00:24 +0200 Subject: [PATCH] shdocvw: Remove WINAPI on static functions where not needed. --- dlls/shdocvw/iexplore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shdocvw/iexplore.c b/dlls/shdocvw/iexplore.c index 59f9173bf87..cbbcac52038 100644 --- a/dlls/shdocvw/iexplore.c +++ b/dlls/shdocvw/iexplore.c @@ -557,7 +557,7 @@ static LRESULT iewnd_OnDestroy(InternetExplorer *This) return 0; } -static LRESULT CALLBACK iewnd_OnCommand(InternetExplorer *This, HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) +static LRESULT iewnd_OnCommand(InternetExplorer *This, HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) { switch(LOWORD(wparam)) { @@ -600,7 +600,7 @@ static LRESULT CALLBACK iewnd_OnCommand(InternetExplorer *This, HWND hwnd, UINT return 0; } -static LRESULT CALLBACK update_addrbar(InternetExplorer *This, LPARAM lparam) +static LRESULT update_addrbar(InternetExplorer *This, LPARAM lparam) { HWND hwndRebar = GetDlgItem(This->frame_hwnd, IDC_BROWSE_REBAR); HWND hwndAddress = GetDlgItem(hwndRebar, IDC_BROWSE_ADDRESSBAR);