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 | |
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')
-rw-r--r-- | win/tclWinInt.h | 8 | ||||
-rw-r--r-- | win/tclWinPort.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/win/tclWinInt.h b/win/tclWinInt.h index 6c7fad2..63a3b1c 100644 --- a/win/tclWinInt.h +++ b/win/tclWinInt.h @@ -22,8 +22,8 @@ #endif #ifdef BUILD_tcl -# undef EXPORT -# define EXPORT DLLEXPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLEXPORT #endif /* @@ -40,7 +40,7 @@ EXTERN void TclWinInit(HINSTANCE hInst); EXTERN int TclWinSynchSpawn(void *args, int type, void **trans, Tcl_Pid *pidPtr); -#undef EXPORT -#define EXPORT DLLIMPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLIMPORT #endif /* _TCLWININT */ 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 */ |