]> andersk Git - moira.git/blame_incremental - include/mr_proto.h
New database and column names for Moira2.
[moira.git] / include / mr_proto.h
... / ...
CommitLineData
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
14typedef struct mr_params {
15 u_long mr_size;
16 u_long 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
30extern int mr_start_recv(), mr_start_send();
This page took 0.035082 seconds and 5 git commands to generate.