mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 09:50:06 +00:00
20 lines
393 B
C
20 lines
393 B
C
|
/* This file extracted from the GTK tutorial. */
|
||
|
|
||
|
/* menufactory.h */
|
||
|
|
||
|
#ifndef __MENUFACTORY_H__
|
||
|
#define __MENUFACTORY_H__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
void get_main_menu (GtkWidget **menubar, GtkAcceleratorTable **table);
|
||
|
void menus_create(GtkMenuEntry *entries, int nmenu_entries);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
#endif /* __MENUFACTORY_H__ */
|