]> andersk Git - moira.git/blame - include/mr_proto.h
added directory definitions
[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$
76062219 9 * Revision 1.2 1987-06-28 05:28:18 spook
10 * Added domain name to 'sms'...
6ff26f0b 11 *
76062219 12 * Revision 1.1 87/06/16 17:48:47 wesommer
13 * Initial revision
14 *
6ff26f0b 15 */
16
17#include <stdio.h>
18#include <gdb.h>
19#include <sms.h>
20
21typedef struct sms_params {
22 u_long sms_size;
23 u_long sms_version_no;
24 union {
25 u_long procno; /* for call */
26 u_long status; /* for reply */
27 } u;
28#define sms_procno u.procno
29#define sms_status u.status
30 int sms_argc;
31 char **sms_argv;
32 int *sms_argl;
33 char *sms_flattened;
34 int sms_state;
35} sms_params;
36
37extern int sms_start_recv(), sms_start_send();
38
76062219 39#define SMS_GDB_SERV "sms.mit.edu:sms_db"
6ff26f0b 40
41/*
42 * Local Variables:
43 * mode: c
44 * c-indent-level: 4
45 * c-continued-statement-offset: 4
46 * c-brace-offset: -4
47 * c-argdecl-indent: 4
48 * c-label-offset: -4
49 * End:
50 */
This page took 0.069471 seconds and 5 git commands to generate.