summaryrefslogtreecommitdiff
path: root/FL/Fl_PostScript.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Fl_PostScript.H')
-rw-r--r--FL/Fl_PostScript.H4
1 files changed, 3 insertions, 1 deletions
diff --git a/FL/Fl_PostScript.H b/FL/Fl_PostScript.H
index bfa588b7c..e679b8eaa 100644
--- a/FL/Fl_PostScript.H
+++ b/FL/Fl_PostScript.H
@@ -25,6 +25,7 @@
#include <FL/Fl_Paged_Device.H>
#include <FL/fl_draw.H>
+#include <stdarg.h>
/**
\brief PostScript graphical backend.
@@ -59,7 +60,7 @@ extern "C" {
}
class FL_EXPORT Fl_PostScript_Graphics_Driver : public Fl_Graphics_Driver {
-public:
+public:
static const char *class_id;
const char *class_name() {return class_id;};
Fl_PostScript_Graphics_Driver();
@@ -205,6 +206,7 @@ class Clip {
void draw(Fl_Pixmap * pxm,int XP, int YP, int WP, int HP, int cx, int cy);
void draw(Fl_Bitmap * bitmap,int XP, int YP, int WP, int HP, int cx, int cy);
void draw(Fl_RGB_Image * rgb,int XP, int YP, int WP, int HP, int cx, int cy);
+ int clocale_printf(const char *format, ...);
~Fl_PostScript_Graphics_Driver();
};