summaryrefslogtreecommitdiff
path: root/FL/x.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/x.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/x.H')
-rw-r--r--FL/x.H24
1 files changed, 12 insertions, 12 deletions
diff --git a/FL/x.H b/FL/x.H
index 079e7dc63..68b834322 100644
--- a/FL/x.H
+++ b/FL/x.H
@@ -1,5 +1,5 @@
//
-// "$Id: x.H,v 1.10.2.8.2.10 2002/08/09 01:09:48 easysw Exp $"
+// "$Id: x.H,v 1.10.2.8.2.11 2002/08/14 16:49:38 easysw Exp $"
//
// X11 header file for the Fast Light Tool Kit (FLTK).
//
@@ -104,7 +104,7 @@ extern FL_EXPORT void fl_delete_bitmask(Fl_Bitmask bm);
// this object contains all X-specific stuff about a window:
// Warning: this object is highly subject to change! It's definition
// is only here so that fl_xid can be declared inline:
-class Fl_X {
+class FL_EXPORT Fl_X {
public:
Window xid;
Window other_xid;
@@ -113,16 +113,16 @@ public:
Fl_X *next;
char wait_for_expose;
char backbuffer_bad; // used for XDBE
- static FL_EXPORT Fl_X* first;
- static FL_EXPORT Fl_X* i(const Fl_Window* wi) {return wi->i;}
- FL_EXPORT void setwindow(Fl_Window* wi) {w=wi; wi->i=this;}
- FL_EXPORT void sendxjunk();
- static FL_EXPORT void make_xid(Fl_Window*,XVisualInfo* =fl_visual, Colormap=fl_colormap);
- static FL_EXPORT Fl_X* set_xid(Fl_Window*, Window);
+ static Fl_X* first;
+ static Fl_X* i(const Fl_Window* wi) {return wi->i;}
+ void setwindow(Fl_Window* wi) {w=wi; wi->i=this;}
+ void sendxjunk();
+ static void make_xid(Fl_Window*,XVisualInfo* =fl_visual, Colormap=fl_colormap);
+ static Fl_X* set_xid(Fl_Window*, Window);
// kludges to get around protection:
- FL_EXPORT void flush() {w->flush();}
- static FL_EXPORT void x(Fl_Window* wi, int X) {wi->x(X);}
- static FL_EXPORT void y(Fl_Window* wi, int Y) {wi->y(Y);}
+ void flush() {w->flush();}
+ static void x(Fl_Window* wi, int X) {wi->x(X);}
+ static void y(Fl_Window* wi, int Y) {wi->y(Y);}
};
// convert xid <-> Fl_Window:
@@ -138,5 +138,5 @@ extern FL_EXPORT int fl_parse_color(const char* p, uchar& r, uchar& g, uchar& b)
#endif
//
-// End of "$Id: x.H,v 1.10.2.8.2.10 2002/08/09 01:09:48 easysw Exp $".
+// End of "$Id: x.H,v 1.10.2.8.2.11 2002/08/14 16:49:38 easysw Exp $".
//