blob: d698a93d3785138f3f10eeb442bd6198628effea (
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_HOR_FILL_SLIDER_GUARD
#define FL_HOR_FILL_SLIDER_GUARD
typedef void* HORFILLSLIDER;
extern "C" HORFILLSLIDER new_fl_hor_fill_slider(int x, int y, int w, int h, char* label);
extern "C" void free_fl_hor_fill_slider(HORFILLSLIDER s);
extern "C" void fl_hor_fill_slider_draw(HORFILLSLIDER s);
extern "C" int fl_hor_fill_slider_handle(HORFILLSLIDER s, int e);
#endif
|