Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / mapping / python / robots.h @ 902

History | View | Annotate | Download (189 Bytes)

1
#ifndef ROBOTS
2
#define ROBOTS
3

    
4
typedef struct Packet
5
{
6
  int source;
7
  int length;
8
  char type;
9
  char *packet;
10
} Packet;
11

    
12
#define GROUP 1
13

    
14
void make_listener();
15
Packet *dequeue();
16

    
17
#endif