diff options
Diffstat (limited to 'hardinfo2/benchmark.c')
-rw-r--r-- | hardinfo2/benchmark.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/hardinfo2/benchmark.c b/hardinfo2/benchmark.c index 81d66534..afb31743 100644 --- a/hardinfo2/benchmark.c +++ b/hardinfo2/benchmark.c @@ -224,6 +224,22 @@ ModuleEntry *hi_module_get_entries(void) return entries; } +gchar *get_all_results(void) +{ + return ""; +} + +ShellModuleMethod* +hi_exported_methods(void) +{ + static ShellModuleMethod m[] = { + { "getAllResults", get_all_results }, + { NULL } + }; + + return m; +} + ModuleAbout * hi_module_get_about(void) { |