* include/wingdi.h (NIF_INFO): Add define.
(NIIF_*) Add defines.. Thanks to: Benoit Blanchon <benoit.blanchon@free.fr> (NIF_*): Convert constants to hex.
This commit is contained in:
parent
9dee1466e8
commit
c3ea0cd332
|
@ -1,3 +1,10 @@
|
||||||
|
2004-11-04 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/wingdi.h (NIF_INFO): Add define.
|
||||||
|
(NIIF_*) Add defines..
|
||||||
|
Thanks to: Benoit Blanchon <benoit.blanchon@free.fr>
|
||||||
|
(NIF_*): Convert constants to hex.
|
||||||
|
|
||||||
2004-11-02 Danny Smith <dannysmith@users.sourceforge.net>
|
2004-11-02 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
|
* include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
|
||||||
|
|
|
@ -51,10 +51,21 @@ extern "C" {
|
||||||
#define NIM_SETFOCUS 3
|
#define NIM_SETFOCUS 3
|
||||||
#define NIM_SETVERSION 4
|
#define NIM_SETVERSION 4
|
||||||
#endif
|
#endif
|
||||||
#define NIF_MESSAGE 1
|
#define NIF_MESSAGE 0x00000001
|
||||||
#define NIF_ICON 2
|
#define NIF_ICON 0x00000002
|
||||||
#define NIF_TIP 4
|
#define NIF_TIP 0x00000004
|
||||||
#define NIF_STATE 8
|
#define NIF_STATE 0x00000008
|
||||||
|
#if (_WIN32_IE >= 0x0500)
|
||||||
|
#define NIF_INFO 0x00000010
|
||||||
|
#define NIIF_NONE 0x00000000
|
||||||
|
#define NIIF_INFO 0x00000001
|
||||||
|
#define NIIF_WARNING 0x00000002
|
||||||
|
#define NIIF_ERROR 0x00000003
|
||||||
|
#endif
|
||||||
|
#if (_WIN32_IE >= 0x0600)
|
||||||
|
#define NIIF_ICON_MASK 0x0000000F
|
||||||
|
#define NIIF_NOSOUND 0x00000010
|
||||||
|
#endif
|
||||||
#define NIS_HIDDEN 1
|
#define NIS_HIDDEN 1
|
||||||
#define NIS_SHAREDICON 2
|
#define NIS_SHAREDICON 2
|
||||||
#define SE_ERR_FNF 2
|
#define SE_ERR_FNF 2
|
||||||
|
|
Loading…
Reference in New Issue