diff options
author | escoffon <escoffon> | 1998-07-29 12:38:05 (GMT) |
---|---|---|
committer | escoffon <escoffon> | 1998-07-29 12:38:05 (GMT) |
commit | b7b5119a5c2c2f111a10ed98418fe43ec973a5bc (patch) | |
tree | 4224e84c872ba6091786b3ab3db28091893777a5 /generic/tkMenubutton.h | |
parent | 568f94b04b7e2f282582eab9ff54447724a80d15 (diff) | |
download | tk-b7b5119a5c2c2f111a10ed98418fe43ec973a5bc.zip tk-b7b5119a5c2c2f111a10ed98418fe43ec973a5bc.tar.gz tk-b7b5119a5c2c2f111a10ed98418fe43ec973a5bc.tar.bz2 |
added support for export/import of DLL symbols. If BUILD_tk is defined,
EXPORT is mapped to DLLEXPORT, otherwise it is DLLIMPORT.
Diffstat (limited to 'generic/tkMenubutton.h')
-rw-r--r-- | generic/tkMenubutton.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/generic/tkMenubutton.h b/generic/tkMenubutton.h index 0fb0f65..d8a6659 100644 --- a/generic/tkMenubutton.h +++ b/generic/tkMenubutton.h @@ -19,6 +19,11 @@ #include "tkInt.h" #endif +#ifdef BUILD_tk +# undef EXPORT +# define EXPORT DLLEXPORT +#endif + /* * A data structure of the following type is kept for each * widget managed by this file: @@ -204,4 +209,7 @@ EXTERN void TkpDestroyMenuButton _ANSI_ARGS_(( EXTERN void TkMenuButtonWorldChanged _ANSI_ARGS_(( ClientData instanceData)); +#undef EXPORT +#define EXPORT DLLIMPORT + #endif /* _TKMENUBUTTON */ |