blob: cc8eabd0c9d5e25b1ddea3bf717cff55277a82fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef FL_MULTILINE_OUTPUT_GUARD
#define FL_MULTILINE_OUTPUT_GUARD
typedef void* MULTILINE_OUTPUT;
extern "C" void multiline_output_set_draw_hook(MULTILINE_OUTPUT n, void * d);
extern "C" void fl_multiline_output_draw(MULTILINE_OUTPUT n);
extern "C" MULTILINE_OUTPUT new_fl_multiline_output(int x, int y, int w, int h, char* label);
extern "C" void free_fl_multiline_output(MULTILINE_OUTPUT i);
#endif
|