mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
Add NtGdiFlushUserBatch callback.
svn path=/trunk/; revision=28461
This commit is contained in:
parent
dd008296b0
commit
81666beff6
4 changed files with 14 additions and 2 deletions
|
@ -160,6 +160,8 @@ VOID FASTCALL IntGetViewportOrgEx(PDC dc, LPPOINT pt);
|
|||
VOID FASTCALL IntGetWindowExtEx(PDC dc, LPSIZE pt);
|
||||
VOID FASTCALL IntGetWindowOrgEx(PDC dc, LPPOINT pt);
|
||||
|
||||
NTSTATUS STDCALL NtGdiFlushUserBatch(VOID);
|
||||
|
||||
/* For Metafile and MetaEnhFile not in windows this struct taken from wine cvs 15/9-2006*/
|
||||
typedef struct
|
||||
{
|
||||
|
|
|
@ -385,7 +385,8 @@ DriverEntry (
|
|||
CalloutData.DesktopDeleteProcedure = IntDesktopObjectDelete;
|
||||
CalloutData.ProcessCallout = Win32kProcessCallback;
|
||||
CalloutData.ThreadCallout = Win32kThreadCallback;
|
||||
|
||||
CalloutData.BatchFlushRoutine = NtGdiFlushUserBatch;
|
||||
|
||||
/*
|
||||
* Register our per-process and per-thread structures.
|
||||
*/
|
||||
|
|
|
@ -55,3 +55,12 @@ NtGdiFlush(VOID)
|
|||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
APIENTRY
|
||||
NtGdiFlushUserBatch(VOID)
|
||||
{
|
||||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
// UNIMPLEMENTED;
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
|
|
@ -156,7 +156,7 @@ NtGdiExtSelectClipRgn 3
|
|||
NtGdiFillPath 1
|
||||
NtGdiFillRgn 3
|
||||
NtGdiFlattenPath 1
|
||||
# NtGdiFlushUserBatch 0
|
||||
NtGdiFlushUserBatch 0
|
||||
NtGdiFlush 0
|
||||
# NtGdiForceUFIMapping 2
|
||||
NtGdiFrameRgn 5
|
||||
|
|
Loading…
Reference in a new issue