/* * $RCSfile: lib_cdinfo.h,v $ * $Author: swaj $ * $Revision: 1.1 $ */ #ifndef __LIB_CDINFO_H_ #define __LIB_CDINFO_H_ 1 // this code taken quickly from cdinfo --> // (c) 1996,1997 Gerd Knorr // and Heiko Eissfeldt #define FS_NO_DATA 0 /* audio only */ #define FS_HIGH_SIERRA 1 #define FS_ISO_9660 2 #define FS_INTERACTIVE 3 #define FS_HFS 4 #define FS_UFS 5 #define FS_EXT2 6 #define FS_ISO_HFS 7 /* both hfs & isofs filesystem */ #define FS_ISO_9660_INTERACTIVE 8 /* both CD-RTOS and isofs filesystem */ #define FS_UNKNOWN 15 #define FS_MASK 15 #define XA 16 #define MULTISESSION 32 #define PHOTO_CD 64 #define HIDDEN_TRACK 128 #define CDTV 256 #define BOOTABLE 512 #define VIDEOCDI 1024 #endif /* __LIB_CDINFO_H_ */ /* * __END__ */