diff options
| author | Manolo Gouy <Manolo> | 2016-03-28 15:22:20 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-03-28 15:22:20 +0000 |
| commit | 28d1a2d6848d5abe555fd0ddae8b57cec6f900ca (patch) | |
| tree | bb17efad1d942a3fee09b0ef9e858677060e2230 /src/drivers/WinAPI/Fl_WinAPI_System_Driver.H | |
| parent | 244a1a5bc439c0a3427e78f1dac9623b85f161bb (diff) | |
Rewrite Fl_abort.cxx under the driver model.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11452 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/drivers/WinAPI/Fl_WinAPI_System_Driver.H')
| -rw-r--r-- | src/drivers/WinAPI/Fl_WinAPI_System_Driver.H | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/drivers/WinAPI/Fl_WinAPI_System_Driver.H b/src/drivers/WinAPI/Fl_WinAPI_System_Driver.H index d213fd4af..c937c97da 100644 --- a/src/drivers/WinAPI/Fl_WinAPI_System_Driver.H +++ b/src/drivers/WinAPI/Fl_WinAPI_System_Driver.H @@ -26,6 +26,7 @@ #define FL_WINAPI_SYSTEM_DRIVER_H #include <FL/Fl_System_Driver.H> +#include <stdarg.h> /* Move everything here that manages the system interface. @@ -41,6 +42,9 @@ class Fl_WinAPI_System_Driver : public Fl_System_Driver { public: + virtual void warning(const char *format, va_list args); + virtual void error(const char *format, va_list args); + virtual void fatal(const char *format, va_list args); }; #endif // FL_WINAPI_SYSTEM_DRIVER_H |
