Initial revision

This commit is contained in:
William Ferrell
1999-12-09 23:15:14 +00:00
commit 2635c3085d
139 changed files with 24298 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef CLIENT_DATA_H
#define CLIENT_DATA_H
#include "../shared/LL.h"
#define CLIENT_NAME_SIZE 256
typedef struct client_data
{
int ack;
char *name;
// and other stuff... doesn't matter yet
LL * screenlist;
// list of accepted keys... (?)
LL * menulist;
} client_data;
// sets up an existing (empty) client_data struct
int client_data_init(client_data *d);
// destroys members of a client's data
int client_data_destroy(client_data *d);
#endif