Commit e02de5ff authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

ddraw: Avoid VOID.

parent 7a0390d8
......@@ -511,7 +511,8 @@ static void LimitTest(void)
IDirectDrawSurface7_Release(pTexture);
}
static HRESULT WINAPI enumDevicesCallback(GUID *Guid,LPSTR DeviceDescription,LPSTR DeviceName, D3DDEVICEDESC *hal, D3DDEVICEDESC *hel, VOID *ctx)
static HRESULT WINAPI enumDevicesCallback(GUID *Guid, char *DeviceDescription,
char *DeviceName, D3DDEVICEDESC *hal, D3DDEVICEDESC *hel, void *ctx)
{
UINT ver = *((UINT *) ctx);
if(IsEqualGUID(&IID_IDirect3DRGBDevice, Guid))
......
......@@ -27,7 +27,7 @@ extern "C" {
#define DdQueryDisplaySettingsUniqueness GdiEntry13
ULONG APIENTRY DdQueryDisplaySettingsUniqueness(VOID);
ULONG APIENTRY DdQueryDisplaySettingsUniqueness(void);
#ifdef __cplusplus
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment