/*********************************************************************** * file: diskhdr.h * part#: * internal sequence#: * * defines the structure of block 0 on Pisces diskettes. * * ************************************************************** * * " c Copyright Hewlett-Packard Company, 1984.* All * * * rights are reserved. Copying or other reproduction * * * of this program except for archival purposes is * * * prohibited without the prior written consent of * * * Hewlett-Packard Company." * * ************************************************************** * * Pisces Q-DOS project * Andy Rood Kernel project lead * ----------------------------------------------------- * initial 11/82 alr */ #define HPUX 0x3000 /* media logical format id for HPUX */ struct diskhdr { short mlfi; /* media logical format identifier */ char vollbl[6]; /* volume label - disk name */ char filler[30]; /* unused */ char vctime[6]; /* volume time of creation */ /* format YYMMDDHHMMSS in bcd */ };