blob: bd5e408c62c9cdf236b8c1a3d74cfb9ae6b6a1c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef FL_INT_INPUT_GUARD
#define FL_INT_INPUT_GUARD
typedef void* INT_INPUT;
extern "C" inline void int_input_set_draw_hook(INT_INPUT i, void * d);
extern "C" inline void fl_int_input_draw(INT_INPUT i);
extern "C" inline void int_input_set_handle_hook(INT_INPUT i, void * h);
extern "C" inline int fl_int_input_handle(INT_INPUT i, int e);
extern "C" inline INT_INPUT new_fl_int_input(int x, int y, int w, int h, char* label);
extern "C" inline void free_fl_int_input(INT_INPUT i);
#endif
|