Line | |
---|
1 | /*
|
---|
2 | This file includes the setup for the file access block for VMS.
|
---|
3 | Written by Phillip C. Brisco 8/98.
|
---|
4 | */
|
---|
5 |
|
---|
6 | #include <rms.h>
|
---|
7 | #include <ssdef.h>
|
---|
8 | #include <stddef.h>
|
---|
9 | #include <stdio.h>
|
---|
10 | #include <stdlib.h>
|
---|
11 | #include <string.h>
|
---|
12 | #include <starlet.h>
|
---|
13 |
|
---|
14 | #if defined(VMS) && defined(__DECC) /* need function prototype */
|
---|
15 | # if (__DECC_VER<50790004) /* have an own one */
|
---|
16 | char *alloca(unsigned int);
|
---|
17 | # else
|
---|
18 | # define alloca __ALLOCA
|
---|
19 | # endif
|
---|
20 | #endif
|
---|
21 |
|
---|
22 |
|
---|
23 | struct FAB fab;
|
---|
24 | struct NAM nam;
|
---|
25 |
|
---|
26 | int length_of_fna_buffer;
|
---|
27 | int fab_stat;
|
---|
28 | char expanded_name[NAM$C_MAXRSS];
|
---|
29 | char fna_buffer[NAM$C_MAXRSS];
|
---|
30 | char result_name[NAM$C_MAXRSS];
|
---|
31 | char final_name[NAM$C_MAXRSS];
|
---|
32 | int max_file_path_size = NAM$C_MAXRSS;
|
---|
33 | char *arr_ptr[32767];
|
---|
Note:
See
TracBrowser
for help on using the repository browser.