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