1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 */
|