summaryrefslogtreecommitdiff
path: root/src/commands.h
blob: 24290af585673b78cacac23a8984849a3c374c33 (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 cmumlbe;

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

void
cmumble_commands_init(struct cmumlbe *cm);

const char *
cmumble_command_expand_shortcut(const char *text);

#endif /* _COMMANDS_H_ */