blob: 2da320773b4a6c8a4d9919e5bd4d734746cbc7bd (
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_NICE_SLIDER_GUARD
#define FL_NICE_SLIDER_GUARD
typedef void* NICESLIDER;
extern "C" NICESLIDER new_fl_nice_slider(int x, int y, int w, int h, char* label);
extern "C" void free_fl_nice_slider(NICESLIDER s);
extern "C" void fl_nice_slider_draw(NICESLIDER s);
extern "C" int fl_nice_slider_handle(NICESLIDER s, int e);
#endif
|