summaryrefslogtreecommitdiff
path: root/FL/glut.H
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-08-14 16:49:38 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-08-14 16:49:38 +0000
commite136d5e1454d406ac458f5503bdb6b4a76f03232 (patch)
tree75fa297ba180eb97b06493c68e243ee66bdc8bf9 /FL/glut.H
parent1aecada52cd42120137dda305c263fde27518352 (diff)
More FL_EXPORT fun...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2584 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/glut.H')
-rw-r--r--FL/glut.H22
1 files changed, 11 insertions, 11 deletions
diff --git a/FL/glut.H b/FL/glut.H
index 686a9b0a7..80d27166c 100644
--- a/FL/glut.H
+++ b/FL/glut.H
@@ -1,5 +1,5 @@
//
-// "$Id: glut.H,v 1.6.2.10.2.2 2002/03/25 16:41:01 easysw Exp $"
+// "$Id: glut.H,v 1.6.2.10.2.3 2002/08/14 16:49:38 easysw Exp $"
//
// GLUT emulation header file for the Fast Light Tool Kit (FLTK).
//
@@ -54,17 +54,17 @@
#include "Fl.H"
#include "Fl_Gl_Window.H"
-class Fl_Glut_Window : public Fl_Gl_Window {
- FL_EXPORT void _init();
+class FL_EXPORT Fl_Glut_Window : public Fl_Gl_Window {
+ void _init();
int mouse_down;
protected:
- FL_EXPORT void draw();
- FL_EXPORT void draw_overlay();
- FL_EXPORT int handle(int);
+ void draw();
+ void draw_overlay();
+ int handle(int);
public: // so the inline functions work
int number;
int menu[3];
- FL_EXPORT void make_current();
+ void make_current();
void (*display)();
void (*overlaydisplay)();
void (*reshape)(int w, int h);
@@ -75,9 +75,9 @@ public: // so the inline functions work
void (*entry)(int);
void (*visibility)(int);
void (*special)(int, int x, int y);
- FL_EXPORT Fl_Glut_Window(int w, int h, const char *);
- FL_EXPORT Fl_Glut_Window(int x, int y, int w, int h, const char *);
- FL_EXPORT ~Fl_Glut_Window();
+ Fl_Glut_Window(int w, int h, const char *);
+ Fl_Glut_Window(int x, int y, int w, int h, const char *);
+ ~Fl_Glut_Window();
};
extern FL_EXPORT Fl_Glut_Window *glut_window; // the current window
@@ -470,5 +470,5 @@ extern void APIENTRY glutSolidIcosahedron();
#endif /* __glut_h__ */
//
-// End of "$Id: glut.H,v 1.6.2.10.2.2 2002/03/25 16:41:01 easysw Exp $".
+// End of "$Id: glut.H,v 1.6.2.10.2.3 2002/08/14 16:49:38 easysw Exp $".
//