diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-03-19 18:33:51 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-03-19 18:33:51 (GMT) |
commit | 2e5d5696ba21142b2af832196c9428971bc198c8 (patch) | |
tree | ac851f22aa1fdc090d2c9af4d6bf279a072ab214 /generic/tclIntDecls.h | |
parent | 5ae57fc1b695b72d90d0b098b8f514621ff7e3ed (diff) | |
download | tcl-2e5d5696ba21142b2af832196c9428971bc198c8.zip tcl-2e5d5696ba21142b2af832196c9428971bc198c8.tar.gz tcl-2e5d5696ba21142b2af832196c9428971bc198c8.tar.bz2 |
Made HEAD build on Windows VC++ again.
Diffstat (limited to 'generic/tclIntDecls.h')
-rw-r--r-- | generic/tclIntDecls.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h index a46e585..c92dfcc 100644 --- a/generic/tclIntDecls.h +++ b/generic/tclIntDecls.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIntDecls.h,v 1.59 2004/03/19 16:15:39 dkf Exp $ + * RCS: @(#) $Id: tclIntDecls.h,v 1.60 2004/03/19 18:33:52 kennykb Exp $ */ #ifndef _TCLINTDECLS @@ -19,6 +19,11 @@ #include "tclPort.h" +#ifdef BUILD_tcl +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLEXPORT +#endif /* BUILD_tcl */ + /* * WARNING: This file is automatically generated by the tools/genStubs.tcl * script. Any modifications to the function declarations below should be made |