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/tclCompile.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/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index b1e700d..fc9fe78 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -6,7 +6,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: tclCompile.h,v 1.6 1998/07/29 13:25:58 escoffon Exp $ + * SCCS: %Z% $Id: tclCompile.h,v 1.7 1998/08/04 11:53:24 escoffon Exp $ */ #ifndef _TCLCOMPILATION @@ -17,8 +17,8 @@ #endif /* _TCLINT */ #ifdef BUILD_tcl -# undef EXPORT -# define EXPORT DLLEXPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLEXPORT #endif /* @@ -1048,7 +1048,7 @@ EXTERN void TclRegisterAuxDataType _ANSI_ARGS_((AuxDataType *typePtr)); #define MAX_JUMP_DIST 5000 -#undef EXPORT -#define EXPORT DLLIMPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLIMPORT #endif /* _TCLCOMPILATION */ |