/* * Copyright (c) 1998-2012 Apple Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ /*! * @header IODVDMedia * @abstract * This header contains the IODVDMedia class definition. */ #ifndef _IODVDMEDIA_H #define _IODVDMEDIA_H /*! * @defined kIODVDMediaClass * @abstract * kIODVDMediaClass is the name of the IODVDMedia class. * @discussion * kIODVDMediaClass is the name of the IODVDMedia class. */ #define kIODVDMediaClass "IODVDMedia" /*! * @defined kIODVDMediaTypeKey * @abstract * kIODVDMediaTypeKey is a property of IODVDMedia objects. It has an OSString * value. * @discussion * The kIODVDMediaTypeKey property identifies the DVD media type (DVD-ROM, * DVD-R, DVD-RW, DVD+RW, DVD-RAM, etc). See the kIODVDMediaType contants * for possible values. */ #define kIODVDMediaTypeKey "Type" /*! * @defined kIODVDMediaTypeROM * The kIODVDMediaTypeKey constant for DVD-ROM media. */ #define kIODVDMediaTypeROM "DVD-ROM" /*! * @defined kIODVDMediaTypeR * The kIODVDMediaTypeKey constant for DVD Recordable (DVD-R) media. */ #define kIODVDMediaTypeR "DVD-R" /*! * @defined kIODVDMediaTypeRW * The kIODVDMediaTypeKey constant for DVD ReWritable (DVD-RW) media. */ #define kIODVDMediaTypeRW "DVD-RW" /*! * @defined kIODVDMediaTypePlusR * The kIODVDMediaTypeKey constant for DVD "Plus" Recordable (DVD+R) media. */ #define kIODVDMediaTypePlusR "DVD+R" /*! * @defined kIODVDMediaTypePlusRW * The kIODVDMediaTypeKey constant for DVD "Plus" ReWritable (DVD+RW) media. */ #define kIODVDMediaTypePlusRW "DVD+RW" /*! * @defined kIODVDMediaTypeRAM * The kIODVDMediaTypeKey constant for DVD-RAM media. */ #define kIODVDMediaTypeRAM "DVD-RAM" /*! * @defined kIODVDMediaTypeHDROM * The kIODVDMediaTypeKey constant for HD DVD-ROM media. */ #define kIODVDMediaTypeHDROM "HD DVD-ROM" /*! * @defined kIODVDMediaTypeHDR * The kIODVDMediaTypeKey constant for HD DVD Recordable (HD DVD-R) media. */ #define kIODVDMediaTypeHDR "HD DVD-R" /*! * @defined kIODVDMediaTypeHDRW * The kIODVDMediaTypeKey constant for HD DVD ReWritable (HD DVD-RW) media. */ #define kIODVDMediaTypeHDRW "HD DVD-RW" /*! * @defined kIODVDMediaTypeHDRAM * The kIODVDMediaTypeKey constant for HD DVD-RAM media. */ #define kIODVDMediaTypeHDRAM "HD DVD-RAM" #endif /* !_IODVDMEDIA_H */