12 lines
250 B
C
12 lines
250 B
C
#ifndef about_dialog_h
|
|
#define about_dialog_h
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#define ABOUT_DIALOG_TYPE (about_dialog_get_type())
|
|
G_DECLARE_FINAL_TYPE(AboutDialog, about_dialog, SAMEBOY, ABOUT_DIALOG, GtkAboutDialog)
|
|
|
|
AboutDialog *about_dialog_new();
|
|
|
|
#endif
|