blob: 263a42b735cc1bb0fe099a55dfce4b196aa455d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Programmed by Jedidiah Barber
// Released into the public domain
#ifndef FL_ERROR_GUARD
#define FL_ERROR_GUARD
extern "C" void fl_error_default_warning(const char * m);
extern "C" void fl_error_default_error(const char * m);
extern "C" void fl_error_default_fatal(const char * m);
extern "C" void fl_error_set_hooks();
#endif
|