]> andersk Git - moira.git/blame - include/mr_proto.h
added US_HALF_ENROLLED
[moira.git] / include / mr_proto.h
CommitLineData
6ff26f0b 1/*
2 * $Source$
3 * $Author$
4 * $Header$
5 *
6 * Copyright (C) 1987 by the Massachusetts Institute of Technology
7 *
8 * $Log$
fea4cbb1 9 * Revision 1.3 1989-10-06 19:09:59 mar
10 * removed default server location (it's in sms_app.h now)
6ff26f0b 11 *
fea4cbb1 12 * Revision 1.2 87/06/28 05:28:18 spook
13 * Added domain name to 'sms'...
14 *
76062219 15 * Revision 1.1 87/06/16 17:48:47 wesommer
16 * Initial revision
17 *
6ff26f0b 18 */
19
20#include <stdio.h>
21#include <gdb.h>
22#include <sms.h>
23
24typedef struct sms_params {
25 u_long sms_size;
26 u_long sms_version_no;
27 union {
28 u_long procno; /* for call */
29 u_long status; /* for reply */
30 } u;
31#define sms_procno u.procno
32#define sms_status u.status
33 int sms_argc;
34 char **sms_argv;
35 int *sms_argl;
36 char *sms_flattened;
37 int sms_state;
38} sms_params;
39
40extern int sms_start_recv(), sms_start_send();
This page took 0.198409 seconds and 5 git commands to generate.