1 " ***********************************************************
2 " * *
3 " * Copyright, C Honeywell Bull Inc., 1988 *
4 " * *
5 " * Copyright, C Honeywell Information Systems Inc., 1981 *
6 " * *
7 " ***********************************************************
8
9 " HISTORY COMMENTS:
10 " 1) change86-06-13Dupuis, approve86-08-05MCR7491,
11 " audit86-08-08Blair, install86-08-15MR12.0-1127:
12 " Made available so that an unbound version of mrds could be created
13 " easily. phx20405 mrds #157
14 " 2) change88-02-16Blair, approve88-02-19MCR7840,
15 " audit88-02-25Dupuis, install88-03-08MR12.2-1034:
16 " Add the missing entrypoints quiesce_db and unquiesce_db to facilitate
17 " testing of unbound modules in exl.
18 " END HISTORY COMMENTS
19
20 "HISTORY:
21 "
22 "81-02-10 Jim Gray : originally created for the mrds model interface entries
23 " this is a transfer vector that allows running a broken apart mrds.
24 "84-10-23 Paul Benjamin : added quiesce_quiet and quiesce_free.
25 "
26 "
27 name mmi_
28
29 entry close_model
30 close_model:
31 tra <mrds_dm_close>|close_model
32
33 entry create_db
34 create_db:
35 tra <mrds_dm_create_db>|create_db
36
37 entry get_model_attributes
38 get_model_attributes:
39 tra <mrds_dm_get_attributes>|get_model_attributes
40
41 entry get_model_info
42 get_model_info:
43 tra <mrds_dm_get_header>|get_model_info
44
45 entry get_model_relations
46 get_model_relations:
47 tra <mrds_dm_get_relations>|get_model_relations
48
49 entry get_secured_state
50 get_secured_state:
51 tra <mrds_dm_db_secured>|get_secured_state
52
53 entry get_authorization
54 get_authorization:
55 tra <mrds_dm_authorization>|get_authorization
56
57 entry open_model
58 open_model:
59 tra <mrds_dm_open>|open_model
60
61 entry quiesce_db
62 quiesce_db:
63 tra <quiesce_mrds_db>|quiesce_db
64
65 entry unquiesce_db
66 unquiesce_db:
67 tra <quiesce_mrds_db>|unquiesce_db
68
69 end