Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / libwireless / lib / ipc.h @ 1128

History | View | Annotate | Download (136 Bytes)

1
#ifndef IPC_H
2
#define IPC_H
3

    
4
typedef struct message_t
5
{
6
        int channel;
7
        int pan;
8
        int id;
9

    
10
        char[128] msg_buf;
11
    
12

    
13
} message;
14

    
15

    
16
#endif