blob: 56b6c7c9e9b908083067fce1257c8331917807b6 (
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
|
/**
* @addtogroup MC_SPID mcSpid - service provider ID.
*
* <!-- Copyright Giesecke & Devrient GmbH 2011-2012 -->
* @ingroup MC_DATA_TYPES
* @{
*/
#ifndef MC_SPID_H_
#define MC_SPID_H_
/** Service provider Identifier type. */
typedef uint32_t mcSpid_t;
/** SPID value used as free marker in root containers. */
static const mcSpid_t MC_SPID_FREE = 0xFFFFFFFF;
/** Reserved SPID value. */
static const mcSpid_t MC_SPID_RESERVED = 0;
/** SPID for system applications. */
static const mcSpid_t MC_SPID_SYSTEM = 0xFFFFFFFE;
#endif // MC_SPID_H_
/** @} */
|