summaryrefslogtreecommitdiff
path: root/src/c_fl_multiline_input.h
blob: f0b6ea1a53f1e73b202dc571da0d5494993b35e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18


#ifndef FL_MULTILINE_INPUT_GUARD
#define FL_MULTILINE_INPUT_GUARD


typedef void* MULTILINE_INPUT;


extern "C" void multiline_input_set_draw_hook(MULTILINE_INPUT n, void * d);
extern "C" void fl_multiline_input_draw(MULTILINE_INPUT n);

extern "C" MULTILINE_INPUT new_fl_multiline_input(int x, int y, int w, int h, char* label);
extern "C" void free_fl_multiline_input(MULTILINE_INPUT i);


#endif