summaryrefslogtreecommitdiff
path: root/src/c_fl_line_dial.h
blob: 73ffb89d49efbc072870a72f136f2a1f676b9546 (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_LINE_DIAL_GUARD
#define FL_LINE_DIAL_GUARD


typedef void* LINE_DIAL;


extern "C" LINE_DIAL new_fl_line_dial(int x, int y, int w, int h, char* label);
extern "C" void free_fl_line_dial(LINE_DIAL v);


extern "C" void fl_line_dial_draw(LINE_DIAL v);
extern "C" int fl_line_dial_handle(LINE_DIAL v, int e);


#endif