// SDLMediaClockFormat.h // #import "SDLEnum.h" /** * Indicates the format of the time displayed on the connected SDL unit. * * Format description follows the following nomenclature:
* Sp = Space
* | = or
* c = character
* * @since SDL 1.0 */ typedef SDLEnum SDLMediaClockFormat SDL_SWIFT_ENUM; /** * @abstract Media clock format: Clock1 * * @discussion * */ extern SDLMediaClockFormat const SDLMediaClockFormatClock1; /** * @abstract Media clock format: Clock2 * * @discussion * */ extern SDLMediaClockFormat const SDLMediaClockFormatClock2; /** * @abstract Media clock format: Clock3 * * @discussion * * * @since SDL 2.0 */ extern SDLMediaClockFormat const SDLMediaClockFormatClock3; /** * @abstract Media clock format: ClockText1 * * @discussion * */ extern SDLMediaClockFormat const SDLMediaClockFormatClockText1; /** * @abstract Media clock format: ClockText2 * * @discussion * * difference between CLOCKTEXT1 and CLOCKTEXT2 is the supported character * set */ extern SDLMediaClockFormat const SDLMediaClockFormatClockText2; /** * @abstract Media clock format: ClockText3 * * @discussion * * difference between CLOCKTEXT1 and CLOCKTEXT2 is the supported character * set */ extern SDLMediaClockFormat const SDLMediaClockFormatClockText3; /** * @abstract Media clock format: ClockText4 * * @discussion * * * @since SDL 2.0 */ extern SDLMediaClockFormat const SDLMediaClockFormatClockText4;