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 | |
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')
-rw-r--r-- | generic/panic.c | 4 | ||||
-rw-r--r-- | generic/tclCompile.h | 10 | ||||
-rw-r--r-- | generic/tclInt.h | 10 | ||||
-rw-r--r-- | generic/tclRegexp.h | 8 |
4 files changed, 16 insertions, 16 deletions
diff --git a/generic/panic.c b/generic/panic.c index 23fe1be..bb5372b 100644 --- a/generic/panic.c +++ b/generic/panic.c @@ -25,8 +25,8 @@ #include "tcl.h" #undef panic -# undef EXPORT -# define EXPORT DLLEXPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLEXPORT EXTERN void panic _ANSI_ARGS_((char *format, char *arg1, char *arg2, char *arg3, char *arg4, char *arg5, 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 */ 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 */ diff --git a/generic/tclRegexp.h b/generic/tclRegexp.h index dc7696f..df31855 100644 --- a/generic/tclRegexp.h +++ b/generic/tclRegexp.h @@ -15,8 +15,8 @@ #endif #ifdef BUILD_tcl -# undef EXPORT -# define EXPORT DLLEXPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLEXPORT #endif /* @@ -42,7 +42,7 @@ EXTERN void TclRegSub _ANSI_ARGS_((regexp *prog, char *source, char *dest)); EXTERN void TclRegError _ANSI_ARGS_((char *msg)); EXTERN char *TclGetRegError _ANSI_ARGS_((void)); -#undef EXPORT -#define EXPORT DLLIMPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLIMPORT #endif /* REGEXP */ |