Subversion Repositories Code-Repo

Rev

Rev 107 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 107 Rev 111
Line 3... Line 3...
3
 
3
 
4
// The maximum length (in bytes) of a message
4
// The maximum length (in bytes) of a message
5
#define MSGLEN 220
5
#define MSGLEN 220
6
 
6
 
7
// The maximum number of messages in a single queue
7
// The maximum number of messages in a single queue
8
#define MSGQUEUELEN 3   // DO NOT CHANGE THIS!
8
#define MSGQUEUELEN 2   // DO NOT CHANGE THIS!
9
 
9
 
10
typedef struct __msg {
10
typedef struct __msg {
11
    unsigned char full; // Indicates that data resides in this msg
11
    unsigned char full; // Indicates that data resides in this msg
12
    unsigned char length; // Length of message data to store
12
    unsigned char length; // Length of message data to store
13
    unsigned char msgtype; // Indicates type of message (see maindefs.h)
13
    unsigned char msgtype; // Indicates type of message (see maindefs.h)