summaryrefslogtreecommitdiff
path: root/src/c_fl_input.h
blob: 6af00e80fee9d68235d039bbe12abcc2791379b1 (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


//  Programmed by Jedidiah Barber
//  Released into the public domain


#ifndef FL_TEXT_INPUT_GUARD
#define FL_TEXT_INPUT_GUARD


typedef void* TEXTINPUT;


extern "C" TEXTINPUT new_fl_text_input(int x, int y, int w, int h, char * label);
extern "C" void free_fl_text_input(TEXTINPUT t);


extern "C" void fl_text_input_draw(TEXTINPUT t);
extern "C" int fl_text_input_handle(TEXTINPUT t, int e);


#endif