ef546fc369
Obtained from [1] at the request of Nerijus Baliunas [2]. [1] https://web.archive.org/web/20110720231607/http://www.fcoutant.freesurf.fr/download/wmmenu-1.2.tar.gz [2] http://lists.windowmaker.org/dev/msg07991.html
20 lines
523 B
C
20 lines
523 B
C
#ifndef menu_h_
|
|
#define menu_h_
|
|
|
|
extern void Menu_LoadFromFile (const char * name) ;
|
|
extern int Menu_HasChanged (void) ;
|
|
extern void Menu_Reload (void) ;
|
|
|
|
extern const char * Menu_GetPixmap (void) ;
|
|
extern const char * Menu_GetTitle (void) ;
|
|
|
|
extern int Menu_GetNbEntries (void) ;
|
|
extern const char * Menu_GetEntryPixmap (int i) ;
|
|
extern const char * Menu_GetEntryCommand (int i) ;
|
|
|
|
extern void Menu_SetNbRows (const char *s) ;
|
|
extern int Menu_GetNbRows (void) ;
|
|
extern int Menu_GetNbColumns (void) ;
|
|
|
|
#endif /* menu_h_ */
|