summaryrefslogtreecommitdiffstats
path: root/generic/tkScrollbar.h
diff options
context:
space:
mode:
authorescoffon <escoffon>1998-07-29 12:38:05 (GMT)
committerescoffon <escoffon>1998-07-29 12:38:05 (GMT)
commitb7b5119a5c2c2f111a10ed98418fe43ec973a5bc (patch)
tree4224e84c872ba6091786b3ab3db28091893777a5 /generic/tkScrollbar.h
parent568f94b04b7e2f282582eab9ff54447724a80d15 (diff)
downloadtk-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/tkScrollbar.h')
-rw-r--r--generic/tkScrollbar.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/generic/tkScrollbar.h b/generic/tkScrollbar.h
index 48296a2..a524e55 100644
--- a/generic/tkScrollbar.h
+++ b/generic/tkScrollbar.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 scrollbar
* widget.
@@ -197,4 +202,7 @@ EXTERN void TkpConfigureScrollbar _ANSI_ARGS_((
EXTERN int TkpScrollbarPosition _ANSI_ARGS_((
TkScrollbar *scrollPtr, int x, int y));
+#undef EXPORT
+#define EXPORT DLLIMPORT
+
#endif /* _TKSCROLLBAR */