Module: wine Branch: master Commit: 18b036e2137707e2af9a7125c17273cec446d5cd URL: http://source.winehq.org/git/wine.git/?a=commit;h=18b036e2137707e2af9a7125c1...
Author: Francois Gouget fgouget@free.fr Date: Tue Aug 24 10:00:24 2010 +0200
shdocvw: Remove WINAPI on static functions where not needed.
---
dlls/shdocvw/iexplore.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/shdocvw/iexplore.c b/dlls/shdocvw/iexplore.c index 59f9173..cbbcac5 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);