summaryrefslogtreecommitdiff
path: root/FL/Fl_Clock.H
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-02-16 22:00:04 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-02-16 22:00:04 +0000
commitca41e69c27af0dee60b8186d06f5be0713d1a051 (patch)
tree85fd248b68d4d00414fef6488016da975f739bd2 /FL/Fl_Clock.H
parent18312d3c1fb325c0d9ac92e98137cebbcadb563c (diff)
Updated headers to support WIN32 and OS/2 DLLs.
Updated VC++ project files. Removed dummymain.c (no longer needed). git-svn-id: file:///fltk/svn/fltk/trunk@278 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Clock.H')
-rw-r--r--FL/Fl_Clock.H26
1 files changed, 13 insertions, 13 deletions
diff --git a/FL/Fl_Clock.H b/FL/Fl_Clock.H
index 8a17ee338..cc287fb9f 100644
--- a/FL/Fl_Clock.H
+++ b/FL/Fl_Clock.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Clock.H,v 1.5 1999/01/13 15:45:48 mike Exp $"
+// "$Id: Fl_Clock.H,v 1.6 1999/02/16 21:59:36 mike Exp $"
//
// Clock header file for the Fast Light Tool Kit (FLTK).
//
@@ -41,14 +41,14 @@
class Fl_Clock_Output : public Fl_Widget {
int hour_, minute_, second_;
ulong value_;
- void drawhands(Fl_Color,Fl_Color); // part of draw
+ FL_EXPORT void drawhands(Fl_Color,Fl_Color); // part of draw
protected:
- void draw(int, int, int, int);
- void draw();
+ FL_EXPORT void draw(int, int, int, int);
+ FL_EXPORT void draw();
public:
- Fl_Clock_Output(int x,int y,int w,int h, const char *l = 0);
- void value(ulong v); // set to this Unix time
- void value(int,int,int); // set hour, minute, second
+ FL_EXPORT Fl_Clock_Output(int x,int y,int w,int h, const char *l = 0);
+ FL_EXPORT void value(ulong v); // set to this Unix time
+ FL_EXPORT void value(int,int,int); // set hour, minute, second
ulong value() const {return value_;}
int hour() const {return hour_;}
int minute() const {return minute_;}
@@ -58,16 +58,16 @@ public:
// a Fl_Clock displays the current time always by using a timeout:
class Fl_Clock : public Fl_Clock_Output {
- int handle(int);
+ FL_EXPORT int handle(int);
public:
- void update();
- Fl_Clock(int x,int y,int w,int h, const char *l = 0);
- Fl_Clock(uchar t,int x,int y,int w,int h, const char *l);
- ~Fl_Clock();
+ FL_EXPORT void update();
+ FL_EXPORT Fl_Clock(int x,int y,int w,int h, const char *l = 0);
+ FL_EXPORT Fl_Clock(uchar t,int x,int y,int w,int h, const char *l);
+ FL_EXPORT ~Fl_Clock();
};
#endif
//
-// End of "$Id: Fl_Clock.H,v 1.5 1999/01/13 15:45:48 mike Exp $".
+// End of "$Id: Fl_Clock.H,v 1.6 1999/02/16 21:59:36 mike Exp $".
//