summaryrefslogtreecommitdiff
path: root/tools/eos-profile-tool/eos-profile-cmds.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eos-profile-tool/eos-profile-cmds.h')
-rw-r--r--tools/eos-profile-tool/eos-profile-cmds.h17
1 files changed, 2 insertions, 15 deletions
diff --git a/tools/eos-profile-tool/eos-profile-cmds.h b/tools/eos-profile-tool/eos-profile-cmds.h
index f06781c..c6da7d4 100644
--- a/tools/eos-profile-tool/eos-profile-cmds.h
+++ b/tools/eos-profile-tool/eos-profile-cmds.h
@@ -8,19 +8,6 @@ typedef int (* EosProfileCmdMain) (void);
gboolean eos_profile_cmd_help_parse_args (int argc, char **argv);
int eos_profile_cmd_help_main (void);
-const struct {
- const char *name;
- const char *description;
+gboolean eos_profile_cmd_show_parse_args (int argc, char **argv);
+int eos_profile_cmd_show_main (void);
- EosProfileCmdParseArgs parse_args;
- EosProfileCmdMain main;
-} profile_commands[] = {
- {
- .name = "help",
- .description = "Prints help",
- .parse_args = eos_profile_cmd_help_parse_args,
- .main = eos_profile_cmd_help_main,
- },
-
- { NULL, },
-};