summaryrefslogtreecommitdiffstats
path: root/generic/tkPlatDecls.h
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2008-04-08 03:28:04 (GMT)
committerKevin B Kenny <kennykb@acm.org>2008-04-08 03:28:04 (GMT)
commitcf6cbd25cb59c0002784a0a740d36481be63abf8 (patch)
tree6b13f877dafa6297111f43f00c7de9f4e8ccad2e /generic/tkPlatDecls.h
parent336c6a7ae7557bae330981e3ff138b77bd428bfd (diff)
downloadtk-cf6cbd25cb59c0002784a0a740d36481be63abf8.zip
tk-cf6cbd25cb59c0002784a0a740d36481be63abf8.tar.gz
tk-cf6cbd25cb59c0002784a0a740d36481be63abf8.tar.bz2
* tkDecls.h: Reverted das's change of Tk's stubs pointers
* tkIntDecls.h: from 'extern' to 'EXTERN'. Since the stubs pointer * tkPlatDecls.h: is always linked statically, its wrong to import or export it from a DLL, and the change causes trouble for extensions that build with -DUSE_TK_STUBS. * tkWinEmbed.c: Removed #if 0 code. Trust the revision control system, if you need it again, you can find it. * tkWinSend.c: Added conditional compilation to silence several compiler warnings.
Diffstat (limited to 'generic/tkPlatDecls.h')
-rw-r--r--generic/tkPlatDecls.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkPlatDecls.h b/generic/tkPlatDecls.h
index d1219cc..d2cc339 100644
--- a/generic/tkPlatDecls.h
+++ b/generic/tkPlatDecls.h
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkPlatDecls.h,v 1.17 2008/04/02 21:32:33 das Exp $
+ * RCS: @(#) $Id: tkPlatDecls.h,v 1.18 2008/04/08 03:28:05 kennykb Exp $
*/
#ifndef _TKPLATDECLS
@@ -157,7 +157,7 @@ typedef struct TkPlatStubs {
} TkPlatStubs;
#if defined(USE_TK_STUBS) && !defined(USE_TK_STUB_PROCS)
-EXTERN CONST TkPlatStubs *tkPlatStubsPtr;
+extern CONST TkPlatStubs *tkPlatStubsPtr;
#endif /* defined(USE_TK_STUBS) && !defined(USE_TK_STUB_PROCS) */
#if defined(USE_TK_STUBS) && !defined(USE_TK_STUB_PROCS)