diff options
author | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2007-12-04 00:30:40 +0000 |
---|---|---|
committer | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2007-12-04 00:30:40 +0000 |
commit | e25b650e30eb95e5eac2e34fa50cd8f8e9f556e9 (patch) | |
tree | 376356063fb7887faebbb6325562d7eadd81f8ad /winsup/w32api | |
parent | 814066b9120c6884d45665da6ca926e20cbaaf7c (diff) | |
download | cygnal-e25b650e30eb95e5eac2e34fa50cd8f8e9f556e9.tar.gz cygnal-e25b650e30eb95e5eac2e34fa50cd8f8e9f556e9.tar.bz2 cygnal-e25b650e30eb95e5eac2e34fa50cd8f8e9f556e9.zip |
2007-12-03 techrazy <techrazy@users.sourceforge.net>
* include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
Diffstat (limited to 'winsup/w32api')
-rw-r--r-- | winsup/w32api/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/w32api/include/wingdi.h | 9 |
2 files changed, 14 insertions, 0 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 52f86b03e..075a552fd 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,8 @@ +2007-12-03 techrazy <techrazy@users.sourceforge.net> + + * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, + NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define. + 2007-11-21 Kevin Conaway <kevin_conaway@users.sourceforge.net> * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define. diff --git a/winsup/w32api/include/wingdi.h b/winsup/w32api/include/wingdi.h index a618fc5ff..8ef74637b 100644 --- a/winsup/w32api/include/wingdi.h +++ b/winsup/w32api/include/wingdi.h @@ -1316,6 +1316,15 @@ extern "C" { #define DISPLAY_DEVICE_REMOVABLE 0x00000020 #define DISPLAY_DEVICE_MODESPRUNED 0x08000000 +#if (WINVER >= 0x0500) +#define NTM_NONNEGATIVE_AC 0x00010000 +#define NTM_PS_OPENTYPE 0x00020000 +#define NTM_TT_OPENTYPE 0x00040000 +#define NTM_MULTIPLEMASTER 0x00080000 +#define NTM_TYPE1 0x00100000 +#define NTM_DSIG 0x00200000 +#endif + #if (_WIN32_WINNT >= 0x0500) #define GGI_MARK_NONEXISTING_GLYPHS 1 #endif |