summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-08-20 19:42:14 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-08-20 19:42:14 +0000
commit0d3d763eab0b4e24c12ef8c99ada6f325106b074 (patch)
tree1ecf4820a1122ddcab5a643eb84fab365af22804
parentad29f94f860dffba67e4c4d4c584160359a82359 (diff)
DLL fix from Robin Hakanson.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2602 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--CHANGES1
-rw-r--r--FL/fl_draw.H8
2 files changed, 5 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index e5bc05b2f..6c631d611 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,6 @@
CHANGES IN FLTK 1.1.0
+ - Minor tweeks to the WIN32 DLL support.
- Fl_Text_Display::resize() could go into an infinite
loop if the buffer is emptied.
- Fl::handle() didn't pass FL_RELEASE events to the
diff --git a/FL/fl_draw.H b/FL/fl_draw.H
index 9d0149136..81f48e20b 100644
--- a/FL/fl_draw.H
+++ b/FL/fl_draw.H
@@ -1,5 +1,5 @@
//
-// "$Id: fl_draw.H,v 1.9.2.6.2.6 2002/06/11 20:58:12 easysw Exp $"
+// "$Id: fl_draw.H,v 1.9.2.6.2.7 2002/08/20 19:42:14 easysw Exp $"
//
// Portable drawing function header file for the Fast Light Tool Kit (FLTK).
//
@@ -180,8 +180,8 @@ FL_EXPORT int fl_draw_pixmap(const char* const* data, int x,int y,Fl_Color=FL_GR
FL_EXPORT int fl_measure_pixmap(const char* const* data, int &w, int &h);
// other:
-extern FL_EXPORT void fl_scroll(int X, int Y, int W, int H, int dx, int dy,
- void (*draw_area)(void*, int,int,int,int), void* data);
+FL_EXPORT void fl_scroll(int X, int Y, int W, int H, int dx, int dy,
+ void (*draw_area)(void*, int,int,int,int), void* data);
FL_EXPORT const char* fl_shortcut_label(int);
FL_EXPORT void fl_overlay_rect(int,int,int,int);
FL_EXPORT void fl_overlay_clear();
@@ -194,5 +194,5 @@ FL_EXPORT int fl_add_symbol(const char* name, void (*drawit)(Fl_Color), int scal
#endif
//
-// End of "$Id: fl_draw.H,v 1.9.2.6.2.6 2002/06/11 20:58:12 easysw Exp $".
+// End of "$Id: fl_draw.H,v 1.9.2.6.2.7 2002/08/20 19:42:14 easysw Exp $".
//