mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:35:43 +00:00
Implement DxEngSetDCOwner, add stub for IntGdiSetDCOwnerEx.
svn path=/trunk/; revision=33186
This commit is contained in:
parent
6e7d793b62
commit
5d1a36463e
3 changed files with 11 additions and 3 deletions
|
@ -77,5 +77,6 @@ PVOID INTERNAL_CALL GDI_MapHandleTable(PSECTION_OBJECT SectionObject, PEPROCES
|
|||
|
||||
BOOL FASTCALL NtGdiDeleteObject(HGDIOBJ hObject);
|
||||
BOOL FASTCALL IsObjectDead(HGDIOBJ);
|
||||
BOOL FASTCALL IntGdiSetDCOwnerEx( HGDIOBJ, DWORD, BOOL);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -725,8 +724,7 @@ BOOLEAN DxEngCleanDC(HDC hdc)
|
|||
/************************************************************************/
|
||||
BOOL STDCALL DxEngSetDCOwner(HGDIOBJ hObject, DWORD OwnerMask)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
return IntGdiSetDCOwnerEx( hObject, OwnerMask, FALSE);
|
||||
}
|
||||
|
||||
/************************************************************************/
|
||||
|
|
|
@ -1646,6 +1646,15 @@ IntGdiGetObject(IN HANDLE Handle,
|
|||
return Result;
|
||||
}
|
||||
|
||||
|
||||
BOOL
|
||||
FASTCALL
|
||||
IntGdiSetDCOwnerEx( HGDIOBJ hObject, DWORD OwnerMask, BOOL NoSetBrush)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
W32KAPI
|
||||
INT
|
||||
APIENTRY
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue