mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
c36ca76bb8
* Makefile.am: * examples/*: added the rest of the tutorial examples
20 lines
305 B
C
20 lines
305 B
C
/* This file extracted from the GTK tutorial. */
|
|
|
|
/* 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__ */
|