diff options
Diffstat (limited to 'hardinfo2/devices.c')
-rw-r--r-- | hardinfo2/devices.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/hardinfo2/devices.c b/hardinfo2/devices.c index eb4cc3e7..b5d97f07 100644 --- a/hardinfo2/devices.c +++ b/hardinfo2/devices.c @@ -381,3 +381,17 @@ hi_module_init(void) { moreinfo = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); } + +ModuleAbout * +hi_module_get_about(void) +{ + static ModuleAbout ma[] = { + { + .author = "Leandro A. F. Pereira (leandro@linuxmag.com.br)", + .version = VERSION, + .license = "GNU GPL version 2" + } + }; + + return ma; +} |