blob: f8c005deccc8a68a3334c3393936fbb915334f0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef FL_LIGHT_BUTTON_GUARD
#define FL_LIGHT_BUTTON_GUARD
typedef void* LIGHTBUTTON;
extern "C" LIGHTBUTTON new_fl_light_button(int x, int y, int w, int h, char* label);
extern "C" void free_fl_light_button(LIGHTBUTTON b);
#endif
|