summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLUpdateMode.h
blob: 8b6d44c671bb23403d47fa6a477eea504911786c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//  SDLUpdateMode.h
//


#import "SDLEnum.h"

/**
 * Specifies what function should be performed on the media clock/counter
 *
 * @since SDL 1.0
 */
typedef SDLEnum SDLUpdateMode NS_STRING_ENUM;

/**
 * @abstract Starts the media clock timer counting upward, in increments of 1 second.
 */
extern SDLUpdateMode const SDLUpdateModeCountUp;

/**
 * @abstract Starts the media clock timer counting downward, in increments of 1 second.
 */
extern SDLUpdateMode const SDLUpdateModeCountDown;

/**
 * @abstract Pauses the media clock timer.
 */
extern SDLUpdateMode const SDLUpdateModePause;

/**
 * @abstract Resumes the media clock timer. The timer resumes counting in whatever mode was in effect before pausing (i.e. COUNTUP or COUNTDOWN).
 */
extern SDLUpdateMode const SDLUpdateModeResume;

/**
 * @abstract Clear the media clock timer.
 */
extern SDLUpdateMode const SDLUpdateModeClear;