54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
/*
|
|
|
|
$Log: S:\gfs32\include\gfsmedia.h_v $
|
|
*
|
|
* Rev 1.0 06 Apr 1995 14:02:04 HEIDI
|
|
* Initial entry
|
|
*
|
|
* Rev 1.0 28 Mar 1995 16:08:14 JAR
|
|
* Initial entry
|
|
|
|
*/
|
|
|
|
|
|
/*
|
|
Copyright 1989 by Wang Laboratories Inc.
|
|
|
|
Permission to use, copy, modify, and distribute this
|
|
software and its documentation for any purpose and without
|
|
fee is hereby granted, provided that the above copyright
|
|
notice appear in all copies and that both that copyright
|
|
notice and this permission notice appear in supporting
|
|
documentation, and that the name of WANG not be used in
|
|
advertising or publicity pertaining to distribution of the
|
|
software without specific, written prior permission.
|
|
WANG makes no representations about the suitability of
|
|
this software for any purpose. It is provided "as is"
|
|
without express or implied warranty.
|
|
*/
|
|
|
|
/*
|
|
* SccsId: @(#)Header gfsmedia.h 1.15@(#)
|
|
*
|
|
* (c) Copyright Wang Laboratories, Inc. 1989
|
|
* All Rights Reserved
|
|
*
|
|
* GFS: Media Types
|
|
*
|
|
*/
|
|
|
|
#ifndef GFSMEDIA_H
|
|
#define GFSMEDIA_H
|
|
|
|
#define OPTICAL 1 /* ... Optical disks */
|
|
#define MAGNETIC 4 /* ... Magnetic disk */
|
|
|
|
/* BELOW UNSUPPORTED */
|
|
#define FILM 2 /* ... Micro film based */
|
|
#define FICHE 3 /* ... Micro fiche based */
|
|
#define APERATURE 5 /* ... Aperature card based */
|
|
#define OPTICAL_TAPE 6 /* ... Optical tape */
|
|
|
|
|
|
#endif /* inclusion conditional */
|