mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[Win32SS] Plug in Last Batch
Plugging in last batch after 12 years.
This commit is contained in:
parent
94b4b5c127
commit
dc7f4f682f
2 changed files with 2 additions and 2 deletions
|
@ -408,7 +408,7 @@ GdiAllocBatchCommand(
|
||||||
else if (Cmd == GdiBCTextOut) cjSize = sizeof(GDIBSTEXTOUT);
|
else if (Cmd == GdiBCTextOut) cjSize = sizeof(GDIBSTEXTOUT);
|
||||||
else if (Cmd == GdiBCExtTextOut) cjSize = sizeof(GDIBSEXTTEXTOUT);
|
else if (Cmd == GdiBCExtTextOut) cjSize = sizeof(GDIBSEXTTEXTOUT);
|
||||||
else if (Cmd == GdiBCSetBrushOrg) cjSize = sizeof(GDIBSSETBRHORG);
|
else if (Cmd == GdiBCSetBrushOrg) cjSize = sizeof(GDIBSSETBRHORG);
|
||||||
else if (Cmd == GdiBCExtSelClipRgn) cjSize = 0;
|
else if (Cmd == GdiBCExtSelClipRgn) cjSize = sizeof(GDIBSEXTSELCLPRGN);
|
||||||
else if (Cmd == GdiBCSelObj) cjSize = sizeof(GDIBSOBJECT);
|
else if (Cmd == GdiBCSelObj) cjSize = sizeof(GDIBSOBJECT);
|
||||||
else if (Cmd == GdiBCDelRgn) cjSize = sizeof(GDIBSOBJECT);
|
else if (Cmd == GdiBCDelRgn) cjSize = sizeof(GDIBSOBJECT);
|
||||||
else if (Cmd == GdiBCDelObj) cjSize = sizeof(GDIBSOBJECT);
|
else if (Cmd == GdiBCDelObj) cjSize = sizeof(GDIBSOBJECT);
|
||||||
|
|
|
@ -950,7 +950,7 @@ APIENTRY
|
||||||
NtGdiDeleteObjectApp(HANDLE hobj)
|
NtGdiDeleteObjectApp(HANDLE hobj)
|
||||||
{
|
{
|
||||||
/* Complete all pending operations */
|
/* Complete all pending operations */
|
||||||
NtGdiFlushUserBatch(); // FIXME: We shouldn't need this
|
//NtGdiFlushUserBatch(); // FIXME: We shouldn't need this
|
||||||
|
|
||||||
if (GDI_HANDLE_IS_STOCKOBJ(hobj)) return TRUE;
|
if (GDI_HANDLE_IS_STOCKOBJ(hobj)) return TRUE;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue