d3d8/tests: Make the window client rect match the d3d swapchain size.
[wine.git] / include / bdaiface_enums.h
blob451224c41e2eb5334aead0f32cb11fe791e430ed
1 /*
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
24 Entitled,
25 NotEntitled,
26 TechnicalFailure
27 } EntitlementType;
29 typedef enum BDA_DrmPairingError
31 BDA_DrmPairing_Succeeded,
32 BDA_DrmPairing_HardwareFailure,
33 BDA_DrmPairing_NeedRevocationData,
34 BDA_DrmPairing_NeedIndiv,
35 BDA_DrmPairing_Other,
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
45 NotReady,
46 UserClosed,
47 SystemClosed,
48 DeviceClosed,
49 ErrorClosed
50 } UICloseReasonType;
52 typedef enum LocationCodeSchemeType
54 SCTE_18
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;
68 BYTE state_code;
69 BYTE county_subdivision;
70 WORD county_code;
71 } EALocationCodeType;
73 typedef enum SmartCardStatusType
75 CardInserted,
76 CardRemoved,
77 CardError,
78 CardDataChanged,
79 CardFirmwareUpgrade
80 } SmartCardStatusType;
82 typedef enum SmartCardAssociationType
84 NotAssociated,
85 Associated,
86 AssociationUnknown
87 } SmartCardAssociationType;
89 #endif /* BDAIFACE_ENUMS_H */