blob: dca5d8466f570e3adc4b95d088769645749ba3d4 (
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
|
// SDLVehicleDataNotificationStatus.h
//
#import "SDLEnum.h"
/**
* Reflects the status of a vehicle data notification. Used in ECallInfo
*
* @since SDL 2.0
*/
typedef SDLEnum SDLVehicleDataNotificationStatus SDL_SWIFT_ENUM;
/**
The vehicle data notification status is not supported
*/
extern SDLVehicleDataNotificationStatus const SDLVehicleDataNotificationStatusNotSupported;
/**
The vehicle data notification status is normal
*/
extern SDLVehicleDataNotificationStatus const SDLVehicleDataNotificationStatusNormal;
/**
The vehicle data notification status is active
*/
extern SDLVehicleDataNotificationStatus const SDLVehicleDataNotificationStatusActive;
/**
The vehicle data notification status is not used
*/
extern SDLVehicleDataNotificationStatus const SDLVehicleDataNotificationStatusNotUsed;
|