summaryrefslogtreecommitdiff
path: root/FL/Enumerations.H
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-02-18 22:07:40 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-02-18 22:07:40 +0000
commitb3ef28260e59a14e0bc8c2dd60bd1bc03782819f (patch)
treef8d819ed1848a36e1ef3388e3c0e30c6373afd67 /FL/Enumerations.H
parent480101ea19482afd576d7583a505e811e8641bc4 (diff)
Updated DLL stuff yet again... sigh...
git-svn-id: file:///fltk/svn/fltk/trunk@296 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Enumerations.H')
-rw-r--r--FL/Enumerations.H15
1 files changed, 6 insertions, 9 deletions
diff --git a/FL/Enumerations.H b/FL/Enumerations.H
index 4aecd5f7e..18dc3baba 100644
--- a/FL/Enumerations.H
+++ b/FL/Enumerations.H
@@ -1,5 +1,5 @@
//
-// "$Id: Enumerations.H,v 1.14 1999/02/18 14:26:36 mike Exp $"
+// "$Id: Enumerations.H,v 1.15 1999/02/18 22:07:38 mike Exp $"
//
// Enumerations for the Fast Light Tool Kit (FLTK).
//
@@ -30,21 +30,18 @@
// The following is only used when building DLLs under WIN32 or OS/2...
//
-#ifdef _MSC_VER
-# ifdef FL_DLL
+#ifdef FL_DLL
+# ifdef FL_LIBRARY
# define FL_EXPORT __declspec(dllexport)
# define FL_IMPORT __declspec(dllimport)
-# elif defined(FL_STATIC)
-# define FL_EXPORT
-# define FL_IMPORT
# else
# define FL_EXPORT __declspec(dllimport)
# define FL_IMPORT __declspec(dllexport)
-# endif /* FL_DLL */
+# endif /* FL_LIBRARY */
#else
# define FL_EXPORT
# define FL_IMPORT
-#endif /* _MSC_VER */
+#endif /* FL_DLL */
//
// The FLTK version number; this is changed slightly from the beta versions
@@ -371,5 +368,5 @@ enum Fl_Damage {
#endif
//
-// End of "$Id: Enumerations.H,v 1.14 1999/02/18 14:26:36 mike Exp $".
+// End of "$Id: Enumerations.H,v 1.15 1999/02/18 22:07:38 mike Exp $".
//