Francois Gouget : ddraw: Remove WINAPI on static functions where not needed .
Module: wine Branch: master Commit: 3cefe7766732fb3375c1db414e27e25f96d95149 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3cefe7766732fb3375c1db414e... Author: Francois Gouget <fgouget(a)free.fr> Date: Sat Jun 8 00:47:28 2013 +0200 ddraw: Remove WINAPI on static functions where not needed. --- dlls/ddraw/ddraw.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/ddraw/ddraw.c b/dlls/ddraw/ddraw.c index 5096a9c..086a483 100644 --- a/dlls/ddraw/ddraw.c +++ b/dlls/ddraw/ddraw.c @@ -764,7 +764,7 @@ static HRESULT WINAPI ddraw1_RestoreDisplayMode(IDirectDraw *iface) * (Probably others too, have to investigate) * *****************************************************************************/ -static HRESULT WINAPI ddraw_set_cooperative_level(struct ddraw *ddraw, HWND window, +static HRESULT ddraw_set_cooperative_level(struct ddraw *ddraw, HWND window, DWORD cooplevel, BOOL restore_mode_on_normal) { struct wined3d_surface *rt = NULL, *ds = NULL;
participants (1)
-
Alexandre Julliard