2 * Copyright 2013 André Hentschel
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef BDAIFACE_ENUMS_H
20 #define BDAIFACE_ENUMS_H
22 typedef enum EntitlementType
29 typedef enum BDA_DrmPairingError
31 BDA_DrmPairing_Succeeded
,
32 BDA_DrmPairing_HardwareFailure
,
33 BDA_DrmPairing_NeedRevocationData
,
34 BDA_DrmPairing_NeedIndiv
,
36 BDA_DrmPairing_DrmInitFailed
,
37 BDA_DrmPairing_DrmNotPaired
,
38 BDA_DrmPairing_DrmRePairSoon
,
39 BDA_DrmPairing_Aborted
,
40 BDA_DrmPairing_NeedSDKUpdate
41 } BDA_DrmPairingError
;
43 typedef enum UICloseReasonType
52 typedef enum LocationCodeSchemeType
55 } LocationCodeSchemeType
;
57 typedef struct SmartCardApplication
59 ApplicationTypeType ApplicationType
;
60 USHORT ApplicationVersion
;
61 BSTR pbstrApplicationName
;
62 BSTR pbstrApplicationURL
;
63 } SmartCardApplication
;
65 typedef struct EALocationCodeType
67 LocationCodeSchemeType LocationCodeScheme
;
69 BYTE county_subdivision
;
73 typedef enum SmartCardStatusType
80 } SmartCardStatusType
;
82 typedef enum SmartCardAssociationType
87 } SmartCardAssociationType
;
89 #endif /* BDAIFACE_ENUMS_H */