Commit 18b036e2 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

shdocvw: Remove WINAPI on static functions where not needed.

parent 88cae5d4
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment