summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_box.h
blob: df7b629515a45578c6d7d73c11c6b5e82b2e514d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


#ifndef FL_BOX_GUARD
#define FL_BOX_GUARD


typedef void* BOX;


extern "C" BOX new_fl_box(int x, int y, int w, int h, char * label);
extern "C" void free_fl_box(BOX b);


#endif