From cf797aec4b4f518fdf27da8d81a00ec4f0467848 Mon Sep 17 00:00:00 2001 From: Lauri Kasanen Date: Wed, 29 Oct 2014 19:57:42 +0000 Subject: [PATCH] Export Fl_Copy_Surface and friends git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10406 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Copy_Surface.H | 8 ++++---- 1 file 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;};