diff options
author | patthoyts <patthoyts@noemail.net> | 2007-09-04 23:21:21 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@noemail.net> | 2007-09-04 23:21:21 (GMT) |
commit | 872526db4a816ba2cfc1ba9d59a89973f9f70759 (patch) | |
tree | 7a2360c7635dd74ceca2421d6298c323730ab37b /win/rc | |
parent | e0b900bb8cf0684b6afb4eb738c853173708d4b4 (diff) | |
download | tk-872526db4a816ba2cfc1ba9d59a89973f9f70759.zip tk-872526db4a816ba2cfc1ba9d59a89973f9f70759.tar.gz tk-872526db4a816ba2cfc1ba9d59a89973f9f70759.tar.bz2 |
Backported the BASE_NO_TK_ICON patch to assist in creating tclkits
and/or basekits with corrent resources.
FossilOrigin-Name: 7f01ef7a7be66fe8ab2679c3b395b9c776c88b14
Diffstat (limited to 'win/rc')
-rw-r--r-- | win/rc/tk_base.rc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/win/rc/tk_base.rc b/win/rc/tk_base.rc index 7a8a2eb..7c326bd 100644 --- a/win/rc/tk_base.rc +++ b/win/rc/tk_base.rc @@ -1,13 +1,22 @@ -// RCS: @(#) $Id: tk_base.rc,v 1.2 2000/10/31 01:28:27 davidg Exp $ +// RCS: @(#) $Id: tk_base.rc,v 1.2.8.1 2007/09/04 23:21:22 patthoyts Exp $ // // Base resources needed by Tk whether it's a DLL or a static library. // +#include <windows.h> + // // Tk Icon // +// The BASE_NO_TK_ICON symbol can be defined to avoid +// creating an icon named "tk" in this resource file. +// The user can then create another icon named tk in +// another resource file and link both resource files. +// Tk will then use the custom icon instead of tk.ico. +#ifndef BASE_NO_TK_ICON tk ICON DISCARDABLE "tk.ico" +#endif #include <dlgs.h> |