]> andersk Git - moira.git/blobdiff - include/mr_proto.h
Initial revision
[moira.git] / include / mr_proto.h
diff --git a/include/mr_proto.h b/include/mr_proto.h
new file mode 100644 (file)
index 0000000..2905fee
--- /dev/null
@@ -0,0 +1,47 @@
+/*
+ *     $Source$
+ *     $Author$
+ *     $Header$
+ *
+ *     Copyright (C) 1987 by the Massachusetts Institute of Technology
+ *
+ *     $Log$
+ *     Revision 1.1  1987-06-16 17:48:47  wesommer
+ *     Initial revision
+ *
+ */
+
+#include <stdio.h>
+#include <gdb.h>
+#include <sms.h>
+
+typedef struct sms_params {
+       u_long sms_size;
+       u_long sms_version_no;
+       union {
+               u_long procno;  /* for call */
+               u_long status;  /* for reply */
+       } u;
+#define sms_procno u.procno
+#define sms_status u.status
+       int sms_argc;
+       char **sms_argv;
+       int *sms_argl;
+       char *sms_flattened;
+       int sms_state;
+} sms_params;
+
+extern int sms_start_recv(), sms_start_send();
+
+#define SMS_GDB_SERV "sms:sms_db"
+
+/*
+ * Local Variables:
+ * mode: c
+ * c-indent-level: 4
+ * c-continued-statement-offset: 4
+ * c-brace-offset: -4
+ * c-argdecl-indent: 4
+ * c-label-offset: -4
+ * End:
+ */
This page took 0.043992 seconds and 4 git commands to generate.