diff options
author | das <das> | 2005-12-09 00:48:51 (GMT) |
---|---|---|
committer | das <das> | 2005-12-09 00:48:51 (GMT) |
commit | eeef28e57a775d4290fcc11d968af58b50830a0d (patch) | |
tree | d4cc4ad147a14ead3f76869e5fa86da611d8d993 /generic/tkTest.c | |
parent | 1984dc757cacc9d2a5497ac210daecd3e569f4d6 (diff) | |
download | tk-eeef28e57a775d4290fcc11d968af58b50830a0d.zip tk-eeef28e57a775d4290fcc11d968af58b50830a0d.tar.gz tk-eeef28e57a775d4290fcc11d968af58b50830a0d.tar.bz2 |
* generic/tkInt.decls: move all platform test sources from tk lib into
* generic/tkTest.c: tktest directly, removes requirement to export
* macosx/tkMacOSXTest.c: TkplatformtestInit from internal stubs table.
* unix/Makefile.in:
* win/Makefile.in:
* win/makefile.vc:
* win/tkWinTest.c:
* generic/tkIntPlatDecls.h:
* generic/tkStubInit.c: regen.
Diffstat (limited to 'generic/tkTest.c')
-rw-r--r-- | generic/tkTest.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tkTest.c b/generic/tkTest.c index 1999117..98df284 100644 --- a/generic/tkTest.c +++ b/generic/tkTest.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTest.c,v 1.29 2005/11/27 02:36:14 das Exp $ + * RCS: @(#) $Id: tkTest.c,v 1.30 2005/12/09 00:48:54 das Exp $ */ #include "tkInt.h" @@ -217,6 +217,8 @@ static void TrivialEventProc(ClientData clientData, #if !(defined(__WIN32__) || defined(MAC_OSX_TK)) #define TkplatformtestInit(x) TCL_OK +#else +MODULE_SCOPE int TkplatformtestInit(Tcl_Interp *interp); #endif /* |