- Implemented GetDCOrg(), which is officially obsolete, but I've included it for completeness' sake :)

svn path=/trunk/; revision=8618
This commit is contained in:
Andrew Greenwood 2004-03-09 23:21:56 +00:00
parent e2b29d7f6c
commit 025e88cba9

View file

@ -895,6 +895,22 @@ GetDCOrgEx(
return NtGdiGetDCOrgEx(a0,a1);
}
/*
* @implemented
*/
LONG
STDCALL
GetDCOrg(
HDC a0
)
{
// Officially obsolete by Microsoft
POINT Pt;
if (!NtGdiGetDCOrgEx(a0,&Pt))
return 0;
return(MAKELONG(Pt.x, Pt.y));
}
/*
* @implemented
*/