mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
Add more DCDWord constants and two more members in GdiUserData structure.
svn path=/trunk/; revision=24559
This commit is contained in:
parent
37741f841f
commit
f7420ccbad
2 changed files with 11 additions and 3 deletions
|
@ -99,6 +99,8 @@ typedef struct _GDI_USER_DATA
|
|||
HCOLORSPACE ColorSpace;
|
||||
INT TextAlign; /* Text alignment from SetTextAlign() */
|
||||
INT CharExtra; /* Spacing from SetTextCharacterExtra() */
|
||||
INT BreakExtral; /* SetTextJustification */
|
||||
INT BreakCount; /* " */
|
||||
INT GraphicsMode; /* Graphics mode */
|
||||
INT MapMode;
|
||||
HFONT hFont;
|
||||
|
|
|
@ -44,13 +44,19 @@ typedef enum _POLYFUNCTYPE
|
|||
typedef enum _GETDCDWORD
|
||||
{
|
||||
GdiGetRelAbs = 1,
|
||||
GdiGetArcDirection = 4,
|
||||
GdiGetFontLanguageInfo = 6,
|
||||
GdiGetIsMemDc = 7,
|
||||
GdiGetBreakExtra,
|
||||
GdiGerCharBreak,
|
||||
GdiGetArcDirection,
|
||||
GdiGetEMFRestorDc,
|
||||
GdiGetFontLanguageInfo,
|
||||
GdiGetIsMemDc,
|
||||
} GETDCDWORD, *PGETDCDWORD;
|
||||
|
||||
typedef enum _GETSETDCDWORD
|
||||
{
|
||||
GdiGetSetRelAbs = 4,
|
||||
GdiGetSetMapperFlagsInternal = 7,
|
||||
GdiGetSetMapMode = 8,
|
||||
GdiGetSetArcDirection = 9,
|
||||
} GETSETDCDWORD, *PGETSETDCDWORD;
|
||||
|
||||
|
|
Loading…
Reference in a new issue