blob: d8e8b909c7c2ecca97155e48c7509d10f85d71ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef FL_MENU_GUARD
#define FL_MENU_GUARD
typedef void* MENU;
extern "C" int fl_menu_add(MENU m, const char * t, unsigned long s, void * c, void * u, unsigned long f);
#endif
|