shdocvw: Remove WINAPI on static functions where not needed.

Francois Gouget fgouget at free.fr
Tue Aug 24 03:00:24 CDT 2010


---
 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);
-- 
1.7.1




More information about the wine-patches mailing list