diff options
Diffstat (limited to 'hardinfo2/devices.c')
-rw-r--r-- | hardinfo2/devices.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hardinfo2/devices.c b/hardinfo2/devices.c index 9f377f46..e196897e 100644 --- a/hardinfo2/devices.c +++ b/hardinfo2/devices.c @@ -397,3 +397,12 @@ hi_module_get_about(void) return ma; } + +gchar ** +hi_module_get_dependencies(void) +{ + static gchar *deps[] = { "computer.so", NULL }; + + return deps; +} + |