- Formatting only, no code change

svn path=/trunk/; revision=61540
This commit is contained in:
Jérôme Gardou 2014-01-05 20:50:09 +00:00
parent c3b566e4d8
commit ade300cb46

View file

@ -38,7 +38,7 @@ IntGetipfdDevMax(PDC pdc)
return Ret;
}
_Success_(return != 0)
_Success_(return != 0)
INT
APIENTRY
NtGdiDescribePixelFormat(
@ -61,7 +61,8 @@ NtGdiDescribePixelFormat(
return 0;
}
if (!pdc->ipfdDevMax) IntGetipfdDevMax(pdc);
if (!pdc->ipfdDevMax)
IntGetipfdDevMax(pdc);
if ((ipfd < 1) || (ipfd > pdc->ipfdDevMax))
{
@ -110,8 +111,8 @@ Exit:
BOOL
APIENTRY
NtGdiSetPixelFormat(
IN HDC hdc,
IN INT ipfd)
_In_ HDC hdc,
_In_ INT ipfd)
{
PDC pdc;
PPDEVOBJ ppdev;
@ -151,7 +152,8 @@ NtGdiSetPixelFormat(
/*
WndObj is needed so exit on NULL pointer.
*/
if (pWndObj) pso = pWndObj->psoOwner;
if (pWndObj)
pso = pWndObj->psoOwner;
else
{
EngSetLastError(ERROR_INVALID_PIXEL_FORMAT);
@ -179,7 +181,8 @@ Exit:
BOOL
APIENTRY
NtGdiSwapBuffers(HDC hDC)
NtGdiSwapBuffers(
_In_ HDC hDC)
{
UNIMPLEMENTED;
return FALSE;