diff options
author | escoffon <escoffon> | 1998-08-04 11:48:17 (GMT) |
---|---|---|
committer | escoffon <escoffon> | 1998-08-04 11:48:17 (GMT) |
commit | 7b465e4732fc0771f3cc42ceb19add6a7c58ecc6 (patch) | |
tree | 4301b600097897620ed3616978d20db6d0889a37 /win/tclWinReg.c | |
parent | 75fb0019552a40e8411a48baff309b47141c4aa5 (diff) | |
download | tcl-7b465e4732fc0771f3cc42ceb19add6a7c58ecc6.zip tcl-7b465e4732fc0771f3cc42ceb19add6a7c58ecc6.tar.gz tcl-7b465e4732fc0771f3cc42ceb19add6a7c58ecc6.tar.bz2 |
EXPORT is now TCL_STORAGE_CLASS
Diffstat (limited to 'win/tclWinReg.c')
-rw-r--r-- | win/tclWinReg.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/win/tclWinReg.c b/win/tclWinReg.c index 7d7a377..97b2f19 100644 --- a/win/tclWinReg.c +++ b/win/tclWinReg.c @@ -21,12 +21,13 @@ #undef WIN32_LEAN_AND_MEAN /* - * EXPORT is set unconditionally to DLLEXPORT because the Registry_Init - * declaration is in the source file itself, which is only accessed when - * we are building a library + * TCL_STORAGE_CLASS is set unconditionally to DLLEXPORT because the + * Registry_Init declaration is in the source file itself, which is only + * accessed when we are building a library. */ -#undef EXPORT -#define EXPORT DLLEXPORT + +#undef TCL_STORAGE_CLASS +#define TCL_STORAGE_CLASS DLLEXPORT /* * VC++ has an alternate entry point called DllMain, so we need to rename |