blob: 96dd11ae512490b6cc281bcfbd49d79fff3dea75 (
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_HORIZONTAL_SLIDER_GUARD
#define FL_HORIZONTAL_SLIDER_GUARD
typedef void* HORIZONTALSLIDER;
extern "C" HORIZONTALSLIDER new_fl_horizontal_slider(int x, int y, int w, int h, char* label);
extern "C" void free_fl_horizontal_slider(HORIZONTALSLIDER s);
extern "C" void fl_horizontal_slider_draw(HORIZONTALSLIDER s);
extern "C" int fl_horizontal_slider_handle(HORIZONTALSLIDER s, int e);
#endif
|