[NtGDI] Add missing type for EPS Print Escape

Part of GDI escape printing.
This commit is contained in:
James Tabor 2020-05-12 20:34:22 -05:00
parent 98bfe2fc89
commit cba5acbc48
2 changed files with 7 additions and 1 deletions

View file

@ -585,6 +585,11 @@ NtGdiGetAndSetDCDword(
switch (u)
{
case GdiGetSetEPSPrintingEscape:
SafeResult = pdc->fs & DC_EPSPRINTINGESCAPE;
pdc->fs &= ~DC_EPSPRINTINGESCAPE;
break;
case GdiGetSetCopyCount:
SafeResult = pdc->ulCopyCount;
pdc->ulCopyCount = dwIn;

View file

@ -59,7 +59,8 @@ typedef enum _GETDCDWORD
typedef enum _GETSETDCDWORD
{
GdiGetSetCopyCount = 2,
GdiGetSetEPSPrintingEscape = 1,
GdiGetSetCopyCount,
GdiGetSetTextAlign,
GdiGetSetRelAbs,
GdiGetSetTextCharExtra,