shdocvw: Remove WINAPI on static functions where not needed.

oldstable
Francois Gouget 2010-08-24 10:00:24 +02:00 committed by Alexandre Julliard
parent 88cae5d4c7
commit 18b036e213
1 changed files with 2 additions and 2 deletions

View File

@ -557,7 +557,7 @@ static LRESULT iewnd_OnDestroy(InternetExplorer *This)
return 0; 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)) switch(LOWORD(wparam))
{ {
@ -600,7 +600,7 @@ static LRESULT CALLBACK iewnd_OnCommand(InternetExplorer *This, HWND hwnd, UINT
return 0; 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 hwndRebar = GetDlgItem(This->frame_hwnd, IDC_BROWSE_REBAR);
HWND hwndAddress = GetDlgItem(hwndRebar, IDC_BROWSE_ADDRESSBAR); HWND hwndAddress = GetDlgItem(hwndRebar, IDC_BROWSE_ADDRESSBAR);