Annotation of freem/src/routine.h, revision 1.1.1.1
1.1 snw 1: /*
2: * *
3: * * *
4: * * *
5: * ***************
6: * * * * *
7: * * MUMPS *
8: * * * * *
9: * ***************
10: * * *
11: * * *
12: * *
13: *
14: * routine.h
15: * Routine buffer constants and prototypes
16: *
17: *
18: * Author: Serena Willis <jpw@coherent-logic.com>
19: * Copyright (C) 1998 MUG Deutschland
20: * Copyright (C) 2023 Coherent Logic Development LLC
21: *
22: *
23: * This file is part of FreeM.
24: *
25: * FreeM is free software: you can redistribute it and/or modify
26: * it under the terms of the GNU Affero Public License as published by
27: * the Free Software Foundation, either version 3 of the License, or
28: * (at your option) any later version.
29: *
30: * FreeM is distributed in the hope that it will be useful,
31: * but WITHOUT ANY WARRANTY; without even the implied warranty of
32: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33: * GNU Affero Public License for more details.
34: *
35: * You should have received a copy of the GNU Affero Public License
36: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
37: *
38: **/
39:
40: #if !defined(_FREEM_ROUTINE_H)
41: # define _FREEM_ROUTINE_H
42:
43: typedef struct rtn_arg {
44: char *arg_name;
45: char *arg_type;
46: short reference;
47: } rtn_arg;
48:
49:
50: typedef struct m_entry {
51: char *tag;
52: char *return_type;
53:
54: rtn_arg args[20];
55: int argct;
56:
57: struct m_entry *next;
58: } m_entry;
59:
60: extern short rtn_get_offset(char *buf);
61: extern char *rtn_resolve(char *rou, char *tag, char *buf);
62: extern short rtn_get_superclass(char *rou, char *buf);
63: extern short rtn_get_path(char *rou, char *buf);
64: extern short rtn_has_tag(char *rou, char *tag);
65: extern void rtn_free_entries(m_entry *head);
66: extern m_entry *rtn_get_entries(char *rou);
67: extern void zload(char *rou);
68: extern void zsave(char *rou);
69: extern void getraddress (char *a, short lvl);
70: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>