Wasabi ExpressPlay SDK for iOS
1.10
Main Page
Modules
Data Structures
Files
File List
Globals
Client
ThirdParty
Sushi
Source
Core
Interface
ShiService.h
Go to the documentation of this file.
1
/*****************************************************************
2
|
3
| Sushi - Broadband Services
4
|
5
| $Id: ShiService.h 7930 2014-06-25 11:05:10Z jebaseelir $
6
| Original author: Gilles Boccon-Gibod
7
|
8
| This software is provided to you pursuant to your agreement
9
| with Intertrust Technologies Corporation ("Intertrust").
10
| This software may be used only in accordance with the terms
11
| of the agreement.
12
|
13
| Copyright (c) 2005-2014 by Intertrust. All rights reserved.
14
|
15
****************************************************************/
21
#ifndef _SHI_SERVICE_H_
22
#define _SHI_SERVICE_H_
23
24
/*----------------------------------------------------------------------
25
| includes
26
+---------------------------------------------------------------------*/
27
#include "
ShiResults.h
"
28
#include "
ShiTypes.h
"
29
#include "
ShiInterfaces.h
"
30
#include "
ShiAttributes.h
"
31
#include "
ShiData.h
"
32
33
/*----------------------------------------------------------------------
34
| types
35
+---------------------------------------------------------------------*/
39
typedef
struct
{
40
const
char
*
name
;
41
const
char
*
uid
;
42
}
SHI_ServiceInfo
;
43
47
typedef
struct
{
48
const
char
*
name
;
49
const
char
*
uid
;
50
SHI_Boolean
is_device_registered;
52
}
SHI_ServiceUserInfo
;
53
57
typedef
struct
{
58
const
char
*
name
;
59
const
char
*
uid
;
60
SHI_Boolean
is_valid
;
61
SHI_DateTime
expiration;
64
SHI_DateTime
renewal_date
;
65
SHI_Data
* renewal_uri_template;
68
}
SHI_ServiceSubscriptionInfo
;
69
70
/*----------------------------------------------------------------------
71
| interfaces
72
+---------------------------------------------------------------------*/
73
#if defined(__cplusplus)
74
extern
"C"
{
75
#endif
76
85
typedef
struct
SHI_Service
SHI_Service
;
86
97
SHI_PUBLIC_API
98
void
*
99
SHI_Service_GetInterface
(
SHI_Service
*
self
,
SHI_InterfaceId
iface_id);
100
109
SHI_PUBLIC_API
110
SHI_Result
111
SHI_Service_Release
(
SHI_Service
*
self
);
112
120
SHI_PUBLIC_API
121
SHI_Result
122
SHI_Service_GetInfo
(
SHI_Service
*
self
,
SHI_ServiceInfo
* info);
123
136
SHI_PUBLIC_API
137
SHI_Result
138
SHI_Service_GetDetails
(
SHI_Service
*
self
,
SHI_Attribute
** details);
139
150
typedef
struct
SHI_ServiceUser
SHI_ServiceUser
;
151
162
SHI_PUBLIC_API
163
void
*
164
SHI_ServiceUser_GetInterface
(
SHI_ServiceUser
*
self
,
SHI_InterfaceId
iface_id);
165
174
SHI_PUBLIC_API
175
SHI_Result
176
SHI_ServiceUser_Release
(
SHI_ServiceUser
*
self
);
177
185
SHI_PUBLIC_API
186
SHI_Result
187
SHI_ServiceUser_GetInfo
(
SHI_ServiceUser
*
self
,
SHI_ServiceUserInfo
* info);
188
201
SHI_PUBLIC_API
202
SHI_Result
203
SHI_ServiceUser_GetDetails
(
SHI_ServiceUser
*
self
,
SHI_Attribute
** details);
204
215
typedef
struct
SHI_ServiceSubscription
SHI_ServiceSubscription
;
216
227
SHI_PUBLIC_API
228
void
*
229
SHI_ServiceSubscription_GetInterface
(
SHI_ServiceSubscription
*
self
,
SHI_InterfaceId
iface_id);
230
239
SHI_PUBLIC_API
240
SHI_Result
241
SHI_ServiceSubscription_Release
(
SHI_ServiceSubscription
*
self
);
242
250
SHI_PUBLIC_API
251
SHI_Result
252
SHI_ServiceSubscription_GetInfo
(
SHI_ServiceSubscription
*
self
,
SHI_ServiceSubscriptionInfo
* info);
253
266
SHI_PUBLIC_API
267
SHI_Result
268
SHI_ServiceSubscription_GetDetails
(
SHI_ServiceSubscription
*
self
,
SHI_Attribute
** details);
269
272
#if defined (__cplusplus)
273
}
274
#endif
275
276
#endif
/* _SHI_SERVICE_H_ */