diff options
| author | 2023-12-24 04:26:00 -0600 | |
|---|---|---|
| committer | 2023-12-24 04:26:00 -0600 | |
| commit | 20d9fc5b5356a1054cb104ba6651b77184abf0db (patch) | |
| tree | 5f115d8051dad73069d3a632a6f2c260cf7efdac /src/commands.h | |
initial commit
Diffstat (limited to 'src/commands.h')
| -rw-r--r-- | src/commands.h | 32 |
1 files changed, 32 insertions, 0 deletions
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 */ |
