blob: 95a3d3ccd5b3d7ba8d32106baed30dd76149298d (
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
38
39
40
41
42
|
// SDLDeviceLevelStatus.h
//
#import "SDLEnum.h"
/**
* Reflects the reported battery status of the connected device, if reported.
*
* @since SDL 2.0
*/
typedef SDLEnum SDLDeviceLevelStatus SDL_SWIFT_ENUM;
/**
* @abstract Device battery level is zero bars
*/
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusZeroBars;
/**
* @abstract Device battery level is one bar
*/
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusOneBar;
/**
* @abstract Device battery level is two bars
*/
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusTwoBars;
/**
* @abstract Device battery level is three bars
*/
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusThreeBars;
/**
* @abstract Device battery level is four bars
*/
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusFourBars;
/**
* @abstract Device battery level is unknown
*/
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusNotProvided;
|