diff options
author | nijtmans <nijtmans> | 2010-01-14 22:05:54 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-01-14 22:05:54 (GMT) |
commit | 4bb5c7bd2b86a922be6f8106241dde924dd16c53 (patch) | |
tree | a0be11a66a484e3498dae8cd7832398cd9e2a038 | |
parent | c735992f7daa038e0b63cd4070133a0986c50d3e (diff) | |
download | tk-4bb5c7bd2b86a922be6f8106241dde924dd16c53.zip tk-4bb5c7bd2b86a922be6f8106241dde924dd16c53.tar.gz tk-4bb5c7bd2b86a922be6f8106241dde924dd16c53.tar.bz2 |
Add SPI_SETKEYBOARDCUES definition,
needed for original VC++ 6.0
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | win/tkWinInt.h | 5 |
2 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,4 @@ -2010-01-?? Jan Nijtmans <nijtmans@users.sf.net> +2010-01-13 Jan Nijtmans <nijtmans@users.sf.net> * generic/tkMenubutton.h: Eliminate tkpMenubuttonClass * generic/tkButton.h make tkpButtonProcs CONST @@ -32,6 +32,8 @@ * win/tkWinInit.c * win/tkWinKey.c * win/tkWinScrlbr.c + * win/tkWinInt.h Add SPI_SETKEYBOARDCUES definition, + needed for original VC++ 6.0 2010-01-10 Jan Nijtmans <nijtmans@users.sf.net> diff --git a/win/tkWinInt.h b/win/tkWinInt.h index d99b2f9..90d68bb 100644 --- a/win/tkWinInt.h +++ b/win/tkWinInt.h @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinInt.h,v 1.33 2009/12/02 21:16:45 nijtmans Exp $ + * RCS: @(#) $Id: tkWinInt.h,v 1.34 2010/01/14 22:05:54 nijtmans Exp $ */ #ifndef _TKWININT @@ -39,6 +39,9 @@ #ifndef WS_EX_TOOLWINDOW #define WS_EX_TOOLWINDOW 0x00000080L #endif +#ifndef SPI_SETKEYBOARDCUES +#define SPI_SETKEYBOARDCUES 0x100B +#endif /* * The TkWinDCState is used to save the state of a device context so that it |