blob: d70743b822c83aabd342bdd62e04b3137d379df3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef _MESSAGE_H_
#define _MESSAGE_H_
#include "message_list.h"
#include "mumble.pb-c.h"
enum cmumble_message {
#define MUMBLE_MSG(a,b) a,
MUMBLE_MSGS
#undef MUMBLE_MSG
};
struct cmumble_context;
void
cmumble_send_msg(struct cmumble_context *ctx, ProtobufCMessage *msg);
int
cmumble_recv_msg(struct cmumble_context *ctx);
#endif /* _MESSAGE_H_ */
|