typedef enum LTDVDBurner_DiscType
{
LTDVDBurner_DiscType_None = -1,
LTDVDBurner_DiscType_Unknown = 0,
LTDVDBurner_DiscType_CDROM = 1,
LTDVDBurner_DiscType_CDR = 2,
LTDVDBurner_DiscType_CDRW = 3,
LTDVDBurner_DiscType_DVDROM = 4,
LTDVDBurner_DiscType_DVDR = 5,
LTDVDBurner_DiscType_DVDRW = 6,
LTDVDBurner_DiscType_DVDRAM = 7,
LTDVDBurner_DiscType_DVDPLUSRW = 8,
LTDVDBurner_DiscType_DVDPLUSR = 9,
LTDVDBurner_DiscType_DVDPLUSRDL = 10
} LTDVDBurner_DiscType;
The LTDVDBurner_DiscType constants specify the disc type.
Constant | Description |
---|---|
LTDVDBurner_DiscType_None | [-1] No disc in drive. |
LTDVDBurner_DiscType_Unknown | [0] Unknown disc type. |
LTDVDBurner_DiscType_CDROM | [1] The disc is a read-only CD-ROM. This disc is NOT recordable. |
LTDVDBurner_DiscType_CDR | [2] The disc is a recordable (write once) CD, CD-R. |
LTDVDBurner_DiscType_CDRW | [3] The disc is a rewriteable CD-RW. |
LTDVDBurner_DiscType_DVDROM | [4] The disc is a read-only DVD-ROM. This disc is NOT recordable. |
LTDVDBurner_DiscType_DVDR | [5] The disc is a recordable (write once) DVD-R. |
LTDVDBurner_DiscType_DVDRW | [6] The disc is a rewriteable DVD-RW. |
LTDVDBurner_DiscType_DVDRAM | [7] The disc is a rewriteable DVD-RAM. This type of disc is usually housed in a cartridge. |
LTDVDBurner_DiscType_DVDPLUSRW | [8] The disc is a rewriteable DVD+RW. |
LTDVDBurner_DiscType_DVDPLUSR | [9] The disc is a recordable (write once) DVD+R. |
LTDVDBurner_DiscType_DVDPLUSRDL | [10] The disc is a dual layer record-able (write once) DVD+R DL. |
The enumeration is used by ILTDVDBurner::GetDriveName and ILTDVDBurner::GetDiscTypeWriteable.