]> andersk Git - moira.git/blob - include/mr_proto.h
Remove files that shouldn't be in the moira tree: these should already
[moira.git] / include / mr_proto.h
1 /*
2  *      $Source$
3  *      $Author$
4  *      $Header$
5  *
6  *      Copyright (C) 1987, 1990 by the Massachusetts Institute of Technology
7  *
8  */
9
10 #include <stdio.h>
11 #include <gdb.h>
12 #include <moira.h>
13
14 typedef struct mr_params {
15         uint32 mr_size;
16         uint32 mr_version_no;
17         union {
18                 u_long procno;  /* for call */
19                 u_long status;  /* for reply */
20         } u;
21 #define mr_procno u.procno
22 #define mr_status u.status
23         int mr_argc;
24         char **mr_argv;
25         int *mr_argl;
26         char *mr_flattened;
27         int mr_state;
28 } mr_params;
29
30 extern int mr_start_recv(), mr_start_send();
This page took 0.041083 seconds and 5 git commands to generate.