diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-01-04 17:15:12 +0000 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-01-04 17:15:12 +0000 |
commit | a1054182ecd202db45cde1883991d70dbb954763 (patch) | |
tree | 9353c7e206a89d4684a169704e29cc01b35a0188 /hardinfo2/computer.c | |
parent | b447372e7c120e2336fe0ac910792b04e1688af2 (diff) |
Add about information.
Diffstat (limited to 'hardinfo2/computer.c')
-rw-r--r-- | hardinfo2/computer.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/hardinfo2/computer.c b/hardinfo2/computer.c index b1676b0f..a4a53c9a 100644 --- a/hardinfo2/computer.c +++ b/hardinfo2/computer.c @@ -389,3 +389,17 @@ hi_module_init(void) computer = g_new0(Computer, 1); moreinfo = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL); } + +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; +} |