/* * template DIR.h * This header file is not part of VAXC. It needed to be created * so VAXC could compile ARCDIR.C correctly. */ struct direct { int d_namlen; char d_name[256]; }; /* * Used by parsedir as the flags argument */ #define PARSE_NODE 0x001 #define PARSE_DEVICE 0x002 #define PARSE_DIRECTORY 0x004 #define PARSE_NAME 0x008 #define PARSE_TYPE 0x010 #define PARSE_VERSION 0x020