mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 01:40:10 +00:00
e8e7692534
Thu Aug 13 09:11:11 BST 1998 Tony Gale <gale@gtk.org> * docs/gtk_tut.sgml: - Tidy up of the menufactory example from Andy Kahn <kahn@zk3.dec.com> - New section on Range Widgets from David Huggins-Daines <bn711@freenet.carleton.ca> - Started a new section on 'Advanced Event and Signal Handling' - used an email from Owen. - New appendix on Gdk Event Types - Added the tictactoe full example code to the 'Code Examples' appendix
20 lines
293 B
C
20 lines
293 B
C
/* example-start menu mfmain.h */
|
|
|
|
#ifndef __MFMAIN_H__
|
|
#define __MFMAIN_H__
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
void file_quit_cmd_callback(GtkWidget *widget, gpointer data);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* __MFMAIN_H__ */
|
|
|
|
/* example-end */
|