Francois Gouget : ddraw: Remove WINAPI on static functions where not needed.

Alexandre Julliard julliard at winehq.org
Fri May 2 11:50:38 CDT 2014


Module: wine
Branch: master
Commit: 4e950d9cbc7c8284d6a708d2a07b9a9ee7994d45
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4e950d9cbc7c8284d6a708d2a07b9a9ee7994d45

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri May  2 16:44:23 2014 +0200

ddraw: Remove WINAPI on static functions where not needed.

---

 dlls/ddraw/surface.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ddraw/surface.c b/dlls/ddraw/surface.c
index b561af4..d192348 100644
--- a/dlls/ddraw/surface.c
+++ b/dlls/ddraw/surface.c
@@ -447,7 +447,7 @@ static ULONG WINAPI d3d_texture1_AddRef(IDirect3DTexture *iface)
     return IUnknown_AddRef(surface->texture_outer);
 }
 
-static HRESULT WINAPI ddraw_surface_set_palette(struct ddraw_surface *surface, IDirectDrawPalette *palette)
+static HRESULT ddraw_surface_set_palette(struct ddraw_surface *surface, IDirectDrawPalette *palette)
 {
     struct ddraw_palette *palette_impl = unsafe_impl_from_IDirectDrawPalette(palette);
     struct ddraw_palette *prev;




More information about the wine-cvs mailing list