DLL fix from Robin Hakanson.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2602 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
2002-08-20 19:42:14 +00:00
parent ad29f94f86
commit 0d3d763eab
2 changed files with 5 additions and 4 deletions
+1
View File
@@ -1,5 +1,6 @@
CHANGES IN FLTK 1.1.0 CHANGES IN FLTK 1.1.0
- Minor tweeks to the WIN32 DLL support.
- Fl_Text_Display::resize() could go into an infinite - Fl_Text_Display::resize() could go into an infinite
loop if the buffer is emptied. loop if the buffer is emptied.
- Fl::handle() didn't pass FL_RELEASE events to the - Fl::handle() didn't pass FL_RELEASE events to the
+4 -4
View File
@@ -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). // 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); FL_EXPORT int fl_measure_pixmap(const char* const* data, int &w, int &h);
// other: // other:
extern FL_EXPORT void fl_scroll(int X, int Y, int W, int H, int dx, int dy, 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); void (*draw_area)(void*, int,int,int,int), void* data);
FL_EXPORT const char* fl_shortcut_label(int); FL_EXPORT const char* fl_shortcut_label(int);
FL_EXPORT void fl_overlay_rect(int,int,int,int); FL_EXPORT void fl_overlay_rect(int,int,int,int);
FL_EXPORT void fl_overlay_clear(); 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 #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 $".
// //