blob: 5d99c3fee48542a5209bdea4c2509a99cafc4daa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef FL_INT_INPUT_GUARD
#define FL_INT_INPUT_GUARD
typedef void* INT_INPUT;
extern "C" INT_INPUT new_fl_int_input(int x, int y, int w, int h, char* label);
extern "C" void free_fl_int_input(INT_INPUT i);
extern "C" const char * fl_int_input_get_value(INT_INPUT i);
#endif
|