summaryrefslogtreecommitdiff
path: root/server/zserver.h
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1987-03-18 12:47:34 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1987-03-18 12:47:34 +0000
commit647ce656f4afd6be1c4306d65e0faff4f7b22070 (patch)
tree2ff279e8b49d944f93f97b4131cffc8a77dd82bf /server/zserver.h
parent6b44d95d60ecc9c6fe9b3081c8eb9f2cdab58915 (diff)
Initial revision
Diffstat (limited to 'server/zserver.h')
-rw-r--r--server/zserver.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/server/zserver.h b/server/zserver.h
new file mode 100644
index 0000000..d8ad9e9
--- /dev/null
+++ b/server/zserver.h
@@ -0,0 +1,24 @@
+/* Coypright 1987, Massachusetts Institute of Technology */
+/*
+ * $Source$
+ * $Header$
+ */
+
+/* definitions for the Zephyr server */
+
+typedef struct _ZClientDesc_t {
+ struct _ZClientDesc_t *q_forw;
+ struct _ZClientDesc_t *q_back;
+} ZClientDesc_t;
+
+typedef struct _ZEntity_t {
+ char *filler; /* fill this in later */
+} ZEntity_t;
+
+/* Function declarations */
+
+extern char *strsave();
+
+/* server internal error codes */
+#define ZERR_S_FIRST 2000
+#define ZERR_S_BADASSOC 2000 /* client not associated with class */