Francois Gouget : ddraw: Remove WINAPI on static functions where not needed .
Module: wine Branch: master Commit: 489527fe44e5f61e974d7563892fce8a98e81a11 URL: http://source.winehq.org/git/wine.git/?a=commit;h=489527fe44e5f61e974d756389... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Thu Sep 8 11:01:41 2011 +0200 ddraw: Remove WINAPI on static functions where not needed. --- dlls/ddraw/surface.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/ddraw/surface.c b/dlls/ddraw/surface.c index 081d4e1..d70e355 100644 --- a/dlls/ddraw/surface.c +++ b/dlls/ddraw/surface.c @@ -875,7 +875,7 @@ static HRESULT WINAPI ddraw_surface1_GetAttachedSurface(IDirectDrawSurface *ifac * For more details, see IWineD3DSurface::LockRect * *****************************************************************************/ -static HRESULT WINAPI surface_lock(IDirectDrawSurfaceImpl *This, +static HRESULT surface_lock(IDirectDrawSurfaceImpl *This, RECT *Rect, DDSURFACEDESC2 *DDSD, DWORD Flags, HANDLE h) { WINED3DLOCKED_RECT LockedRect;
participants (1)
-
Alexandre Julliard