mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-31 22:03:45 +00:00
This version was on the VMS FREEWARE disk at some point. It shipped with the included .exes, though modern windows systems certainly don't support the direct access to SCSI DLL that's used.
34 lines
888 B
C
34 lines
888 B
C
/* Fibdef.h v1.3 Definition of 'struct fibdef' */
|
|
|
|
/*
|
|
This is part of ODS2 written by Paul Nankervis,
|
|
email address: Paulnank@au1.ibm.com
|
|
|
|
ODS2 is distributed freely for all members of the
|
|
VMS community to use. However all derived works
|
|
must maintain comments in their source to acknowledge
|
|
the contibution of the original author.
|
|
*/
|
|
|
|
|
|
#ifndef FIM$M_WILD
|
|
|
|
#define FIB$M_WILD 0x100
|
|
|
|
struct fibdef {
|
|
unsigned fib$l_acctl;
|
|
unsigned short fib$w_fid_num;
|
|
unsigned short fib$w_fid_seq;
|
|
unsigned char fib$b_fid_rvn;
|
|
unsigned char fib$b_fid_nmx;
|
|
unsigned short fib$w_did_num;
|
|
unsigned short fib$w_did_seq;
|
|
unsigned char fib$b_did_rvn;
|
|
unsigned char fib$b_did_nmx;
|
|
unsigned fib$l_wcc;
|
|
unsigned fib$w_nmctl;
|
|
unsigned fib$l_exsz;
|
|
unsigned fib$w_exctl;
|
|
};
|
|
#endif
|