diff options
author | escoffon <escoffon> | 1998-08-04 11:53:13 (GMT) |
---|---|---|
committer | escoffon <escoffon> | 1998-08-04 11:53:13 (GMT) |
commit | e04a81a2d7da55e3afebd4fec7929d8a68a197e7 (patch) | |
tree | 090e5f16668eabbd7db73b22c64166805ea36425 /generic/tclInt.h | |
parent | 36e80da1975e7b338e6b25489249183cab3ee8ed (diff) | |
download | tcl-e04a81a2d7da55e3afebd4fec7929d8a68a197e7.zip tcl-e04a81a2d7da55e3afebd4fec7929d8a68a197e7.tar.gz tcl-e04a81a2d7da55e3afebd4fec7929d8a68a197e7.tar.bz2 |
EXPORT is now TCL_STORAGE_CLASS
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index dc9ae2f..a8545a2 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * SCCS: %Z% $Id: tclInt.h,v 1.13 1998/07/29 13:26:06 escoffon Exp $ + * SCCS: %Z% $Id: tclInt.h,v 1.14 1998/08/04 11:53:33 escoffon Exp $ */ #ifndef _TCLINT @@ -58,8 +58,8 @@ #endif #ifdef BUILD_tcl -# undef EXPORT -# define EXPORT DLLEXPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLEXPORT #endif /* @@ -2097,8 +2097,8 @@ EXTERN void Tcl_SetNamespaceResolvers _ANSI_ARGS_(( Tcl_ResolveVarProc *varProc, Tcl_ResolveCompiledVarProc *compiledVarProc)); -#undef EXPORT -#define EXPORT DLLIMPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLIMPORT #endif /* _TCLINT */ |