From 20d9fc5b5356a1054cb104ba6651b77184abf0db Mon Sep 17 00:00:00 2001 From: bigfoot547 Date: Sun, 24 Dec 2023 04:26:00 -0600 Subject: initial commit --- src/commands.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/commands.h (limited to 'src/commands.h') diff --git a/src/commands.h b/src/commands.h new file mode 100644 index 0000000..fe3f102 --- /dev/null +++ b/src/commands.h @@ -0,0 +1,32 @@ +#ifndef L2SU_COMMANDS_H_INCLUDED +#define L2SU_COMMANDS_H_INCLUDED + +#include "command.h" + +unsigned cmd_instance_add(struct l2_context_node *, char **); +unsigned cmd_instance_remove(struct l2_context_node *, char **); +unsigned cmd_instance_list(struct l2_context_node *, char **); +unsigned cmd_instance_rename(struct l2_context_node *, char **); + +unsigned cmd_user_add(struct l2_context_node *, char **); +unsigned cmd_user_remove(struct l2_context_node *, char **); +unsigned cmd_user_nick(struct l2_context_node *, char **); + +unsigned cmd_version_list_remote(struct l2_context_node *, char **); +unsigned cmd_version_list_local(struct l2_context_node *, char **); +unsigned cmd_version_install(struct l2_context_node *, char **); + +unsigned cmd_profile_add(struct l2_context_node *, char **); +unsigned cmd_profile_delete(struct l2_context_node *, char **); +unsigned cmd_profile_rename(struct l2_context_node *, char **); +unsigned cmd_profile_set(struct l2_context_node *, char **); +unsigned cmd_profile_get(struct l2_context_node *, char **); +unsigned cmd_profile_info(struct l2_context_node *, char **); + +unsigned cmd_launch(struct l2_context_node *, char **); +unsigned cmd_launch2(struct l2_context_node *, char **); + +unsigned cmd_version(struct l2_context_node *, char **); +unsigned cmd_help(struct l2_context_node *, char **); + +#endif /* include guard */ -- cgit v1.2.3-70-g09d2