Commit 8a6a1570 authored by Octavian Voicu's avatar Octavian Voicu Committed by Alexandre Julliard

ddraw: Make IDirectDrawClipperImpl_[GS]etHWnd function names consistent with SDK.

parent 21a477e1
......@@ -106,7 +106,7 @@ static ULONG WINAPI IDirectDrawClipperImpl_Release(IDirectDrawClipper *iface)
}
/*****************************************************************************
* IDirectDrawClipper::SetHwnd
* IDirectDrawClipper::SetHWnd
*
* Assigns a hWnd to the clipper interface.
*
......@@ -120,7 +120,7 @@ static ULONG WINAPI IDirectDrawClipperImpl_Release(IDirectDrawClipper *iface)
*
*****************************************************************************/
static HRESULT WINAPI IDirectDrawClipperImpl_SetHwnd(IDirectDrawClipper *iface, DWORD dwFlags,
static HRESULT WINAPI IDirectDrawClipperImpl_SetHWnd(IDirectDrawClipper *iface, DWORD dwFlags,
HWND hWnd)
{
IDirectDrawClipperImpl *This = impl_from_IDirectDrawClipper(iface);
......@@ -200,9 +200,9 @@ static HRESULT WINAPI IDirectDrawClipperImpl_SetClipList(IDirectDrawClipper *ifa
}
/*****************************************************************************
* IDirectDrawClipper::GetHwnd
* IDirectDrawClipper::GetHWnd
*
* Returns the hwnd assigned with SetHwnd
* Returns the hwnd assigned with SetHWnd
*
* Arguments:
* hWndPtr: Address to store the HWND at
......@@ -292,7 +292,7 @@ static const struct IDirectDrawClipperVtbl ddraw_clipper_vtbl =
IDirectDrawClipperImpl_Initialize,
IDirectDrawClipperImpl_IsClipListChanged,
IDirectDrawClipperImpl_SetClipList,
IDirectDrawClipperImpl_SetHwnd
IDirectDrawClipperImpl_SetHWnd
};
HRESULT ddraw_clipper_init(IDirectDrawClipperImpl *clipper)
......
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