diff options
author | davygrvy <davygrvy@pobox.com> | 2004-11-03 19:13:33 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2004-11-03 19:13:33 (GMT) |
commit | ccdbf7af4fd7cd4694c8c3ade12c5e054d75750f (patch) | |
tree | f66be1556c55e0b8da6e2f22786fa95efb9fb935 /generic/tclInt.h | |
parent | 2463762938a5ed358ba3ab3c6bab3bbc6bdd33c0 (diff) | |
download | tcl-ccdbf7af4fd7cd4694c8c3ade12c5e054d75750f.zip tcl-ccdbf7af4fd7cd4694c8c3ade12c5e054d75750f.tar.gz tcl-ccdbf7af4fd7cd4694c8c3ade12c5e054d75750f.tar.bz2 |
* generic/tcl.h: Moved the preprocessor logic
* generic/tclDecls.h: from tclInt.h of setting the
* generic/tclInt.h: TCL_STORAGE_CLASS macro to the
* generic/tclIntDecls.h: tcl*Decls.h files now that no
* generic/tclIntPlatDecls.h: use of EXTERN is left in tclInt.h.
* generic/tclPlatDecls.h: Proto for Tcl_Main moved in tcl.h
* win/tclWinPort.h: to prior the inclusion of the Stubs
headers as they are now resetting TCL_STORAGE_CLASS. Removed
extrainious reset from tclWinPort.h. [Patch 1055668]
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 8fcc9fc..fe64bf7 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.192 2004/11/02 21:08:58 davygrvy Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.193 2004/11/03 19:13:38 davygrvy Exp $ */ #ifndef _TCLINT @@ -51,17 +51,6 @@ #include <string.h> #endif -#undef TCL_STORAGE_CLASS -#ifdef BUILD_tcl -# define TCL_STORAGE_CLASS DLLEXPORT -#else -# ifdef USE_TCL_STUBS -# define TCL_STORAGE_CLASS -# else -# define TCL_STORAGE_CLASS DLLIMPORT -# endif -#endif - /* * Used to tag functions that are only to be visible within the module * being built and not outside it (where this is supported by the @@ -2706,8 +2695,5 @@ MODULE_SCOPE void TclDbInitNewObj _ANSI_ARGS_((Tcl_Obj *objPtr)); #include "tclIntDecls.h" #include "tclIntPlatDecls.h" -# undef TCL_STORAGE_CLASS -# define TCL_STORAGE_CLASS DLLIMPORT - #endif /* _TCLINT */ |