// portabledevice.h
typedef enum tagWPD_EFFECT_MODES {
WPD_EFFECT_MODE_UNDEFINED,
WPD_EFFECT_MODE_COLOR,
WPD_EFFECT_MODE_BLACK_AND_WHITE,
WPD_EFFECT_MODE_SEPIA
} WPD_EFFECT_MODES;
View the official Windows Driver Kit DDI referenceNo description available.
The WPD_EFFECT_MODES enumeration type describes various visual effects that can be applied to an image.
WPD_EFFECT_MODE_UNDEFINEDNo effect has been specified.
WPD_EFFECT_MODE_COLORThe image should be color.
WPD_EFFECT_MODE_BLACK_AND_WHITEThe image should be black and white.
WPD_EFFECT_MODE_SEPIAThe image should be sepia.
This enumeration is used by the WPD_STILL_IMAGE_EFFECT_MODE property.
Structures and Enumeration Types