blob: c95f2387325b6d669ce708eaa567e9f6b6ae8b43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _COMMANDS_H_
#define _COMMANDS_H_
struct cmumble_context;
struct cmumble_command {
const char *name;
void (*callback)(struct cmumble_context *);
const char *description;
};
void
cmumble_commands_init(struct cmumble_context *ctx);
#endif /* _COMMANDS_H_ */
|