diff options
author | Dimitri Papadopoulos <dimitri_at@users.sf.net> | 2006-03-29 11:56:38 +0000 |
---|---|---|
committer | Dimitri Papadopoulos <dimitri_at@users.sf.net> | 2006-03-29 11:56:38 +0000 |
commit | aee7cf676e0e6246b8b943ec1952fe0dc7f9ebc5 (patch) | |
tree | f0d70aa2eecd54c9bff05b0dce79d81b1ad30ba8 | |
parent | 12b33712894f9c61732ef686d81248fc607b6766 (diff) | |
download | cygnal-aee7cf676e0e6246b8b943ec1952fe0dc7f9ebc5.tar.gz cygnal-aee7cf676e0e6246b8b943ec1952fe0dc7f9ebc5.tar.bz2 cygnal-aee7cf676e0e6246b8b943ec1952fe0dc7f9ebc5.zip |
* include/winspool.h [_WIN32_WINNT >= 0x0500]
(DRIVER_*MODE): Define (DWORD type).
Thanks to: Roland Schwingel <rolandschwingel at users dot sf dot net>
-rw-r--r-- | winsup/w32api/ChangeLog | 14 | ||||
-rw-r--r-- | winsup/w32api/include/winspool.h | 2 |
2 files changed, 11 insertions, 5 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 64e952d3d..2b2fd1a09 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,7 @@ +2006-03-29 Dimitri Papadopoulos <papadopo@users.sourceforge.net> + * include/winspool.h [_WIN32_WINNT >= 0x0500] + (DRIVER_*MODE): Define (DWORD type). + Thanks to: Roland Schwingel <rolandschwingel at users dot sf dot net> 2006-03-27 Danny Smith <dannysmith@users.sourceforge.net> @@ -58,14 +62,14 @@ Thanks to: Roland Schwingel <rolandschwingel at users dot sf dot net> 2006-03-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - * include/shellapi.h [_WIN32_IE >= 0x0600] + * include/shellapi.h [_WIN32_IE >= 0x0600] (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on Windows XP SP1 and Windows XP respectively. 2006-03-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define. Thanks to: Daniel Atallah <datallah at users dot sf dot net> - * include/shellapi.h [_WIN32_IE >= 0x0500] + * include/shellapi.h [_WIN32_IE >= 0x0500] (NIS_*): Introduced in Version 5.0. 2006-03-06 Danny Smith <dannysmith@users.sourceforge.net> @@ -80,7 +84,7 @@ 2006-03-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - * include/wingdi.h [WINVER >= 0x0500] + * include/wingdi.h [WINVER >= 0x0500] (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later. Thanks to: David A. Capello <dacap at users dot sf dot net> @@ -220,7 +224,7 @@ 2006-01-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - * include/uxtheme.h [_WIN32_WINNT >= 0x0501] + * include/uxtheme.h [_WIN32_WINNT >= 0x0501] (TMT_*, BT_*): Add constants. 2005-12-31 Corinna Vinschen <corinna@vinschen.de> @@ -353,7 +357,7 @@ 2005-09-08 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - * include/reason.h [_WIN32_WINNT >= 0x0501] + * include/reason.h [_WIN32_WINNT >= 0x0501] (SHTDN_REASON_*): New file. * include/objbase.h: Avoid double header guard. diff --git a/winsup/w32api/include/winspool.h b/winsup/w32api/include/winspool.h index 5acae161d..60e72d661 100644 --- a/winsup/w32api/include/winspool.h +++ b/winsup/w32api/include/winspool.h @@ -15,6 +15,8 @@ extern "C" { #define FORM_BUILTIN 0x1 #define FORM_PRINTER 0x2 #if (_WIN32_WINNT >= 0x0500) +#define DRIVER_KERNELMODE 0x00000001 +#define DRIVER_USERMODE 0x00000002 #define DSPRINT_PUBLISH 0x00000001 #define DSPRINT_UPDATE 0x00000002 #define DSPRINT_UNPUBLISH 0x00000004 |