summaryrefslogtreecommitdiff
path: root/src/commands.h
blob: cfecde974755853ddfd2291277265a31c451c6ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _COMMANDS_H_
#define _COMMANDS_H_

struct cmumble;

struct cmumble_command {
	const char *name;
	void (*callback)(struct cmumble *,
			 int argc, char **argv);
	const char *description;
};

void
cmumble_commands_init(struct cmumble *cm);

const char *
cmumble_command_expand_shortcut(const char *text);

#endif /* _COMMANDS_H_ */