Francois Gouget : shell32: Remove WINAPI on static functions where not needed.
Module: wine Branch: master Commit: 319f3b7d6d74fb3c1922ab7efb3614b0edf53956 URL: http://source.winehq.org/git/wine.git/?a=commit;h=319f3b7d6d74fb3c1922ab7efb... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Fri Aug 5 09:56:34 2011 +0200 shell32: Remove WINAPI on static functions where not needed. --- dlls/shell32/shlmenu.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/shell32/shlmenu.c b/dlls/shell32/shlmenu.c index eb68939..b37d526 100644 --- a/dlls/shell32/shlmenu.c +++ b/dlls/shell32/shlmenu.c @@ -1088,7 +1088,7 @@ static ULONG WINAPI CompositeCMenu_Release(IContextMenu3 *iface) return 0; } -static UINT WINAPI CompositeCMenu_GetIndexForCommandId(CompositeCMenu *This,UINT id) +static UINT CompositeCMenu_GetIndexForCommandId(CompositeCMenu *This,UINT id) { UINT low=0; UINT high=This->menu_count;
participants (1)
-
Alexandre Julliard