summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorLauri Kasanen <cand@gmx.com>2014-10-29 19:57:42 +0000
committerLauri Kasanen <cand@gmx.com>2014-10-29 19:57:42 +0000
commitcf797aec4b4f518fdf27da8d81a00ec4f0467848 (patch)
treeff09a3db77dd89d34c1ed20f40d7ed08e5478060 /FL
parente292620aad3a78bb4ca2e4032e1799644aa9d332 (diff)
Export Fl_Copy_Surface and friends
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10406 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Copy_Surface.H8
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_Copy_Surface.H b/FL/Fl_Copy_Surface.H
index 3e652afcc..114f45556 100644
--- a/FL/Fl_Copy_Surface.H
+++ b/FL/Fl_Copy_Surface.H
@@ -51,7 +51,7 @@
Applications to which the clipboard content is pasted can use the flavor that suits them best.
\li X11: the graphical data is copied to the clipboard as an image in BMP format.
*/
-class Fl_Copy_Surface : public Fl_Surface_Device {
+class FL_EXPORT Fl_Copy_Surface : public Fl_Surface_Device {
private:
int width;
int height;
@@ -84,7 +84,7 @@ public:
#if defined(__APPLE__)
/* Mac class to reimplement Fl_Paged_Device::printable_rect() */
-class Fl_Quartz_Surface_ : public Fl_System_Printer {
+class FL_EXPORT Fl_Quartz_Surface_ : public Fl_System_Printer {
protected:
int width;
int height;
@@ -99,7 +99,7 @@ public:
#elif defined(WIN32)
/* Win class to implement translate()/untranslate() */
-class Fl_GDI_Surface_ : public Fl_Paged_Device {
+class FL_EXPORT Fl_GDI_Surface_ : public Fl_Paged_Device {
int width;
int height;
unsigned depth;
@@ -116,7 +116,7 @@ public:
#elif !defined(FL_DOXYGEN)
/* Xlib class to implement translate()/untranslate() */
-class Fl_Xlib_Surface_ : public Fl_Paged_Device {
+class FL_EXPORT Fl_Xlib_Surface_ : public Fl_Paged_Device {
public:
static const char *class_id;
const char *class_name() {return class_id;};