ddraw: Remove WINAPI on static functions where not needed.

This commit is contained in:
Francois Gouget 2014-05-02 16:44:23 +02:00 committed by Alexandre Julliard
parent c37714342e
commit 4e950d9cbc
1 changed files with 1 additions and 1 deletions

View File

@ -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;