mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Add NtGdiCreate-DeleteClientObj to win32k. This is used for Metafile not EnhMeta.
svn path=/trunk/; revision=28054
This commit is contained in:
parent
9d0415f7a7
commit
6428c40f66
2 changed files with 24 additions and 0 deletions
|
@ -1477,4 +1477,26 @@ GDI_MapHandleTable(PSECTION_OBJECT SectionObject, PEPROCESS Process)
|
|||
return MappedView;
|
||||
}
|
||||
|
||||
W32KAPI
|
||||
HANDLE
|
||||
APIENTRY
|
||||
NtGdiCreateClientObj(
|
||||
IN ULONG ulType
|
||||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
}
|
||||
|
||||
W32KAPI
|
||||
BOOL
|
||||
APIENTRY
|
||||
NtGdiDeleteClientObj(
|
||||
IN HANDLE h
|
||||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -21,6 +21,7 @@ NtGdiCombineTransform 3
|
|||
NtGdiCopyEnhMetaFile 2
|
||||
NtGdiCopyMetaFile 2
|
||||
NtGdiCreateBitmap 5
|
||||
NtGdiCreateClientObj 1
|
||||
NtGdiCreateColorSpace 1
|
||||
NtGdiCreateCompatibleBitmap 3
|
||||
NtGdiCreateCompatibleDC 1
|
||||
|
@ -42,6 +43,7 @@ NtGdiCreateRoundRectRgn 6
|
|||
NtGdiCreateScalableFontResource 4
|
||||
NtGdiCreateSolidBrush 2
|
||||
NtGdiDPtoLP 3
|
||||
NtGdiDeleteClientObj 1
|
||||
NtGdiDeleteColorSpace 1
|
||||
NtGdiDeleteObjectApp 1
|
||||
NtGdiDeleteEnhMetaFile 1
|
||||
|
|
Loading…
Reference in a new issue