mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[NtGDI] Add missing type for EPS Print Escape
Part of GDI escape printing.
This commit is contained in:
parent
98bfe2fc89
commit
cba5acbc48
2 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -59,7 +59,8 @@ typedef enum _GETDCDWORD
|
|||
|
||||
typedef enum _GETSETDCDWORD
|
||||
{
|
||||
GdiGetSetCopyCount = 2,
|
||||
GdiGetSetEPSPrintingEscape = 1,
|
||||
GdiGetSetCopyCount,
|
||||
GdiGetSetTextAlign,
|
||||
GdiGetSetRelAbs,
|
||||
GdiGetSetTextCharExtra,
|
||||
|
|
Loading…
Reference in a new issue