include: Add PaletteFlags enumeration.
This commit is contained in:
parent
c02ee18869
commit
a5b9cbfffc
|
@ -291,6 +291,13 @@ enum HotkeyPrefix
|
|||
HotkeyPrefixHide = 2
|
||||
};
|
||||
|
||||
enum PaletteFlags
|
||||
{
|
||||
PaletteFlagsHasAlpha = 1,
|
||||
PaletteFlagsGrayScale = 2,
|
||||
PaletteFlagsHalftone = 4
|
||||
};
|
||||
|
||||
enum ImageCodecFlags
|
||||
{
|
||||
ImageCodecFlagsEncoder = 1,
|
||||
|
@ -455,6 +462,7 @@ typedef enum FontStyle FontStyle;
|
|||
typedef enum StringFormatFlags StringFormatFlags;
|
||||
typedef enum HotkeyPrefix HotkeyPrefix;
|
||||
typedef enum PenAlignment GpPenAlignment;
|
||||
typedef enum PaletteFlags PaletteFlags;
|
||||
typedef enum ImageCodecFlags ImageCodecFlags;
|
||||
typedef enum CombineMode CombineMode;
|
||||
typedef enum FlushIntention FlushIntention;
|
||||
|
|
Loading…
Reference in New Issue