1
2
3
4
5
6 dcl 1 vrm_open_info aligned based (vrm_open_info_ptr),
7 2 version char (8),
8 2 opening_id bit (36) aligned,
9 2 file_uid bit (36) aligned,
10 2 number_of_openings fixed bin,
11 2 switches,
12 3 shared bit (1) unal,
13 3 pad bit (35) unal init ("0"b),
14 2 database_dir_path char (168) varying,
15 2 relation_name char (30) varying,
16 2 relation_model_ptr pointer,
17 2 com_ptr pointer,
18 2 iocb_list_ptr pointer,
19 2 primary_key_info_ptr pointer,
20 2 number_of_index_collections fixed bin,
21 2 index_collection (voi_no_of_index_collections
22 refer (vrm_open_info.number_of_index_collections)),
23 3 id bit (36),
24 3 info_ptr ptr unal;
25
26
27 dcl VRM_OPEN_INFO_VERSION_1 char (8) int static options (constant) init (" 1");
28 dcl vrm_open_info_ptr ptr;
29 dcl voi_no_of_index_collections fixed bin;
30
31