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 /win/tclWinPort.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 'win/tclWinPort.h')
-rw-r--r-- | win/tclWinPort.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index 3beb94e..653afa2 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -37,8 +37,8 @@ #undef WIN32_LEAN_AND_MEAN #ifdef BUILD_tcl -# undef EXPORT -# define EXPORT DLLEXPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLEXPORT #endif /* @@ -400,7 +400,7 @@ EXTERN u_short PASCAL FAR EXTERN int PASCAL FAR TclWinSetSockOpt _ANSI_ARGS_((SOCKET s, int level, int optname, const char FAR * optval, int optlen)); -#undef EXPORT -#define EXPORT DLLIMPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLIMPORT #endif /* _TCLWINPORT */ |