00001 #ifndef fh2def_h 00002 #define fh2def_h 00003 00004 /* Access.h v1.3 Definitions for file access routines */ 00005 00006 /* 00007 This is part of ODS2 written by Paul Nankervis, 00008 email address: Paulnank@au1.ibm.com 00009 00010 ODS2 is distributed freely for all members of the 00011 VMS community to use. However all derived works 00012 must maintain comments in their source to acknowledge 00013 the contibution of the original author. 00014 00015 Originally part of access.h 00016 */ 00017 00018 #define NO_DOLLAR 00019 #include "mytypes.h" 00020 00021 #define FH2_M_NOBACKUP 0x2 00022 #define FH2_M_CONTIG 0x80 00023 #define FH2_M_DIRECTORY 0x2000 00024 #define FH2_M_MARKDEL 0x8000 00025 #define FH2_M_ERASE 0x20000 00026 00027 struct _fh2 { 00028 vmsbyte fh2_b_idoffset; 00029 vmsbyte fh2_b_mpoffset; 00030 vmsbyte fh2_b_acoffset; 00031 vmsbyte fh2_b_rsoffset; 00032 vmsword fh2_w_seg_num; 00033 vmsword fh2_w_struclev; 00034 struct _fiddef fh2_w_fid; 00035 struct _fiddef fh2_w_ext_fid; 00036 struct _fatdef fh2_w_recattr; 00037 vmslong fh2_l_filechar; 00038 vmsword fh2_w_reserved1; 00039 vmsbyte fh2_b_map_inuse; 00040 vmsbyte fh2_b_acc_mode; 00041 struct _uicdef fh2_l_fileowner; 00042 vmsword fh2_w_fileprot; 00043 struct _fiddef fh2_w_backlink; 00044 vmsbyte fh2_b_journal; 00045 vmsbyte fh2_b_ru_active; 00046 vmsword fh2_w_reserved2; 00047 vmslong fh2_l_highwater; 00048 vmsbyte fh2_b_reserved3[8]; 00049 vmsbyte fh2_r_class_prot[20]; 00050 vmsbyte fh2_r_restofit[402]; 00051 vmsword fh2_w_checksum; 00052 }; 00053 00054 #endif 00055