gcc484ntopperl-5.22
Last change
on this file since c5c522c was
c5c522c,
checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago
|
initial commit, transferred from cleaned syn3 svn tree
|
-
Property mode set to
100644
|
File size:
495 bytes
|
Line | |
---|
1 | #ifndef CLIENT_DATA_H |
---|
2 | #define CLIENT_DATA_H |
---|
3 | |
---|
4 | #include "../shared/LL.h" |
---|
5 | |
---|
6 | |
---|
7 | #define CLIENT_NAME_SIZE 256 |
---|
8 | |
---|
9 | typedef struct client_data |
---|
10 | { |
---|
11 | int ack; |
---|
12 | char *name; |
---|
13 | // and other stuff... doesn't matter yet |
---|
14 | LL * screenlist; |
---|
15 | // list of accepted keys... (?) |
---|
16 | LL * menulist; |
---|
17 | |
---|
18 | } client_data; |
---|
19 | |
---|
20 | |
---|
21 | // sets up an existing (empty) client_data struct |
---|
22 | int client_data_init(client_data *d); |
---|
23 | // destroys members of a client's data |
---|
24 | int client_data_destroy(client_data *d); |
---|
25 | |
---|
26 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.