summaryrefslogtreecommitdiff
path: root/FL/fl_ask.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_ask.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_ask.H')
-rw-r--r--FL/fl_ask.H32
1 files changed, 16 insertions, 16 deletions
diff --git a/FL/fl_ask.H b/FL/fl_ask.H
index f882f6cfb..3136b3dce 100644
--- a/FL/fl_ask.H
+++ b/FL/fl_ask.H
@@ -1,5 +1,5 @@
//
-// "$Id: fl_ask.H,v 1.5 1999/01/07 19:17:06 mike Exp $"
+// "$Id: fl_ask.H,v 1.6 1999/02/16 21:59:47 mike Exp $"
//
// Standard dialog header file for the Fast Light Tool Kit (FLTK).
//
@@ -28,27 +28,27 @@
class Fl_Widget;
-void fl_message(const char *,...);
-void fl_alert(const char *,...);
-int fl_ask(const char *,...);
-int fl_choice(const char *q,const char *b0,const char *b1,const char *b2,...);
-const char *fl_input(const char *label, const char *deflt = 0, ...);
-const char *fl_password(const char *label, const char *deflt = 0, ...);
+FL_EXPORT void fl_message(const char *,...);
+FL_EXPORT void fl_alert(const char *,...);
+FL_EXPORT int fl_ask(const char *,...);
+FL_EXPORT int fl_choice(const char *q,const char *b0,const char *b1,const char *b2,...);
+FL_EXPORT const char *fl_input(const char *label, const char *deflt = 0, ...);
+FL_EXPORT const char *fl_password(const char *label, const char *deflt = 0, ...);
-Fl_Widget *fl_message_icon();
-extern unsigned char fl_message_font_;
-extern unsigned char fl_message_size_;
+FL_EXPORT Fl_Widget *fl_message_icon();
+extern FL_EXPORT unsigned char fl_message_font_;
+extern FL_EXPORT unsigned char fl_message_size_;
inline void fl_message_font(unsigned char f,unsigned char s) {
fl_message_font_ = f; fl_message_size_ = s;}
-// pointers you can use to change fltk to a foreign language:
-extern const char* fl_no;
-extern const char* fl_yes;
-extern const char* fl_ok;
-extern const char* fl_cancel;
+// pointers you can use to change FLTK to a foreign language:
+extern FL_EXPORT const char* fl_no;
+extern FL_EXPORT const char* fl_yes;
+extern FL_EXPORT const char* fl_ok;
+extern FL_EXPORT const char* fl_cancel;
#endif
//
-// End of "$Id: fl_ask.H,v 1.5 1999/01/07 19:17:06 mike Exp $".
+// End of "$Id: fl_ask.H,v 1.6 1999/02/16 21:59:47 mike Exp $".
//