summaryrefslogtreecommitdiff
path: root/FL/Fl_Image.H
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-07-14 21:25:39 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-07-14 21:25:39 +0000
commitd0f18c45b5052098236b042331a578620d7b05be (patch)
tree0c8b43075631c98670bffa3cc83e3c4ea9f23ee7 /FL/Fl_Image.H
parent7c4010a10684b49ad3ae85ef87af658acd3b038e (diff)
Boy, aren't WIN32 compilers *so* much fun.
Fix more export problems, make some more static inline methods regular functions, don't use FL_NORMAL_SIZE in a static initializer since BC++ doesn't seem to support it... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2531 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Image.H')
-rw-r--r--FL/Fl_Image.H10
1 files changed, 5 insertions, 5 deletions
diff --git a/FL/Fl_Image.H b/FL/Fl_Image.H
index 2ab513f8c..d8ca4c0a2 100644
--- a/FL/Fl_Image.H
+++ b/FL/Fl_Image.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Image.H,v 1.5.2.3.2.12 2002/04/26 11:32:37 easysw Exp $"
+// "$Id: Fl_Image.H,v 1.5.2.3.2.13 2002/07/14 21:25:39 easysw Exp $"
//
// Image header file for the Fast Light Tool Kit (FLTK).
//
@@ -46,10 +46,10 @@ class FL_EXPORT Fl_Image {
void d(int D) {d_ = D;}
void ld(int LD) {ld_ = LD;}
void data(const char * const *p, int c) {data_ = p; count_ = c;}
- void draw_empty(int X, int Y);
+ FL_EXPORT void draw_empty(int X, int Y);
- static void labeltype(const Fl_Label *lo, int lx, int ly, int lw, int lh, Fl_Align la);
- static void measure(const Fl_Label *lo, int &lw, int &lh);
+ FL_EXPORT static void labeltype(const Fl_Label *lo, int lx, int ly, int lw, int lh, Fl_Align la);
+ FL_EXPORT static void measure(const Fl_Label *lo, int &lw, int &lh);
public:
@@ -98,5 +98,5 @@ class FL_EXPORT Fl_RGB_Image : public Fl_Image {
#endif
//
-// End of "$Id: Fl_Image.H,v 1.5.2.3.2.12 2002/04/26 11:32:37 easysw Exp $".
+// End of "$Id: Fl_Image.H,v 1.5.2.3.2.13 2002/07/14 21:25:39 easysw Exp $".
//