diff options
author | escoffon <escoffon@noemail.net> | 1998-08-04 12:18:48 (GMT) |
---|---|---|
committer | escoffon <escoffon@noemail.net> | 1998-08-04 12:18:48 (GMT) |
commit | 6dd7c1614ae3876b720ed26dd554f328d6424619 (patch) | |
tree | 493fe50e7d0189f1d6de4d685e3d4a42357f667f /win | |
parent | f05118ed094ed8be87946c27b9073176f1460440 (diff) | |
download | tk-6dd7c1614ae3876b720ed26dd554f328d6424619.zip tk-6dd7c1614ae3876b720ed26dd554f328d6424619.tar.gz tk-6dd7c1614ae3876b720ed26dd554f328d6424619.tar.bz2 |
EXPORT is now TCL_STORAGE_CLASS
FossilOrigin-Name: 840c6370a9d02cdc8ed283d0c12f73ec35fb8557
Diffstat (limited to 'win')
-rw-r--r-- | win/tkWin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/win/tkWin.h b/win/tkWin.h index d407b61..66fd203 100644 --- a/win/tkWin.h +++ b/win/tkWin.h @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * SCCS: @(#) tkWin.h 1.6 96/08/15 13:19:41 + * SCCS: %Z% $Id: tkWin.h,v 1.3 1998/08/04 12:20:01 escoffon Exp $ */ #ifndef _TKWIN @@ -24,8 +24,8 @@ #undef WIN32_LEAN_AND_MEAN #ifdef BUILD_tk -# undef EXPORT -# define EXPORT DLLEXPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLEXPORT #endif /* @@ -58,7 +58,7 @@ EXTERN int Tk_TranslateWinEvent _ANSI_ARGS_((HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, LRESULT *result)); -#undef EXPORT -#define EXPORT DLLIMPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLIMPORT #endif /* _TKWIN */ |