mirror of
https://github.com/open-simh/simtools.git
synced 2026-04-28 04:44:50 +00:00
38 lines
940 B
C
38 lines
940 B
C
/* Fibdef.h v1.2 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.
|
|
*/
|
|
|
|
|
|
#if defined(VMS) && !defined(__GNUC__)
|
|
|
|
#include <fibdef.h>
|
|
|
|
#else
|
|
|
|
#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
|