1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// Warning/error message code for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// Copyright 1998-2011 by Bill Spitzak and others.
|
|
|
|
//
|
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-04-16 04:13:17 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
// You can also override this by redefining all of these.
|
|
|
|
|
|
|
|
#include <FL/Fl.H>
|
2018-06-26 17:12:43 +03:00
|
|
|
#include "Fl_System_Driver.H"
|
2001-11-25 19:38:11 +03:00
|
|
|
#include <stdarg.h>
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2016-03-28 18:22:20 +03:00
|
|
|
void (*Fl::warning)(const char* format, ...) = Fl_System_Driver::warning;
|
|
|
|
void (*Fl::error)(const char* format, ...) = Fl_System_Driver::error;
|
|
|
|
void (*Fl::fatal)(const char* format, ...) = Fl_System_Driver::fatal;
|