aboutsummaryrefslogtreecommitdiff
path: root/modules.h
diff options
context:
space:
mode:
authorAgney Lopes Roth Ferraz <agney@users.sourceforge.net>2005-06-13 18:34:20 -0300
committerSimon Quigley <tsimonq2@ubuntu.com>2017-06-19 14:38:31 -0500
commit61dfceab1e3e9d77aa2900a6e333961f89c4ef45 (patch)
tree673b0f2f59b4b9ed4c2595a5690aa63480190103 /modules.h
parent7d65a12d6431f72e601ea1d0c3ef5d09af8bfb96 (diff)
parenta08438bda21b3e0d7db2db2360d040841970104d (diff)
Import Debian changes 0.3.7pre-1
hardinfo (0.3.7pre-1) unstable; urgency=low * New upstream release. (Closes: #280694, #300114, #233033)
Diffstat (limited to 'modules.h')
-rw-r--r--modules.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules.h b/modules.h
new file mode 100644
index 00000000..046d4b94
--- /dev/null
+++ b/modules.h
@@ -0,0 +1,21 @@
+#ifndef __MODULES_H__
+#define __MODULES_H__
+
+#include <gtk/gtk.h>
+
+typedef struct _ModInfo ModInfo;
+
+struct _ModInfo {
+ gchar *name;
+ gchar *author;
+ gchar *description;
+ gchar *license;
+ gchar *depends;
+
+ ModInfo *next;
+};
+
+void hi_show_module_info(MainWindow *mainwindow, ModInfo *modinfo);
+ModInfo *hi_scan_modules(void);
+
+#endif