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


#ifndef FL_FILE_INPUT_GUARD
#define FL_FILE_INPUT_GUARD


typedef void* FILE_INPUT;


extern "C" void file_input_set_draw_hook(FILE_INPUT n, void * d);
extern "C" void fl_file_input_draw(FILE_INPUT n);

extern "C" FILE_INPUT new_fl_file_input(int x, int y, int w, int h, char* label);
extern "C" void free_fl_file_input(FILE_INPUT i);


#endif