Add the msidbTextStyleStyleBits enumeration.

oldstable
Mike McCormack 2005-02-02 09:55:31 +00:00 committed by Alexandre Julliard
parent 032d6aa234
commit ac643d3137
1 changed files with 8 additions and 0 deletions

View File

@ -38,6 +38,14 @@ enum msidbDialogAttributes {
msidbDialogAttributesError = 0x00010000
};
enum msidbTextStyleStyleBits
{
msidbTextStyleStyleBitsBold = 0x00000001,
msidbTextStyleStyleBitsItalic = 0x00000002,
msidbTextStyleStyleBitsUnderline = 0x00000004,
msidbTextStyleStyleBitsStrike = 0x00000008,
};
#ifdef __cplusplus
}
#endif