blob: 17238bc38f9b80ccb6d4a339d7b22793eee08fea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* @file
* @author Mark Rader
* @date 2008-09-07
*
* @section DESCRIPTION
* Defines structures and enumerated values for interprocess communication.
*/
#ifndef _COMM_H_
#define _COMM_H_
#include "comm-structs.h"
#include "client.h"
#include "buffer.h"
void
comm_process(struct client *c, struct buffer *b, struct lin_message *m);
#endif /* _COMM_H_ */
|