summaryrefslogtreecommitdiff
path: root/src/dialogs/about.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-05-18 23:35:50 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-05-18 23:35:50 (GMT)
commitadd611caeebe4c504652f99895c30846af239339 (patch)
tree340c86fb0f937a641d791803e4ebf5e93e84ab1a /src/dialogs/about.h
parent7adb4243ad629554e496de173977721a8a5d0110 (diff)
Displayed the about window.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@157 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/dialogs/about.h')
-rw-r--r--src/dialogs/about.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/dialogs/about.h b/src/dialogs/about.h
new file mode 100644
index 0000000..6d934d7
--- /dev/null
+++ b/src/dialogs/about.h
@@ -0,0 +1,37 @@
+
+/* OpenIDA - Outil d'analyse de fichiers binaires
+ * about.h - prototypes pour la boîte de dialogue d'information sur le programme
+ *
+ * Copyright (C) 2010 Cyrille Bagard
+ *
+ * This file is part of OpenIDA.
+ *
+ * OpenIDA is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * OpenIDA is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _DIALOGS_ABOUT_H
+#define _DIALOGS_ABOUT_H
+
+
+#include <gtk/gtk.h>
+
+
+
+/* Construit la fenêtre d'informations sur le logiciel. */
+GtkWidget *create_about_dialog(GtkWindow *);
+
+
+
+#endif /* _DIALOGS_ABOUT_H */