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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
// automatically generated by rust-bindgen 0.71.1
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
pub use ohos_sys_opaque_types::OH_Utd;
extern "C" {
/// Prouct a pointer to the instance of the [`OH_Utd`].
///
/// # Arguments
///
/// * `typeId` - Represents type of UTD, reference udmf_meta.h.
///
/// # Returns
///
/// * If the operation is successful, a pointer to the instance of the [`OH_Utd`]
/// structure is returned.If the operation is failed, nullptr is returned.
/// Must be destroyed with [`OH_Utd_DestroyTypeDescriptor`] when not needed.
/// [`OH_Utd.`]
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_Create(typeId: *const ::core::ffi::c_char) -> *mut OH_Utd;
/// Destroy a pointer that points to the [`OH_Utd`] instance.
///
/// # Arguments
///
/// * `pThis` - Represents a pointer to an instance of [`OH_Utd`].
/// [`OH_Utd.`]
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_Destroy(pThis: *mut OH_Utd);
/// Get type id from the [`OH_Utd`].
///
/// # Arguments
///
/// * `pThis` - Represents a pointer to an instance of [`OH_Utd`].
///
/// # Returns
///
/// * Returns a string pointer when input args normally, otherwise return nullptr.
/// [`OH_Utd.`]
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_GetTypeId(pThis: *mut OH_Utd) -> *const ::core::ffi::c_char;
/// Get description from the [`OH_Utd`].
///
/// # Arguments
///
/// * `pThis` - Represents a pointer to an instance of [`OH_Utd`].
///
/// # Returns
///
/// * Returns a string pointer when input args normally, otherwise return nullptr.
/// [`OH_Utd.`]
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_GetDescription(pThis: *mut OH_Utd) -> *const ::core::ffi::c_char;
/// Get url from the [`OH_Utd`].
///
/// # Arguments
///
/// * `pThis` - Represents a pointer to an instance of [`OH_Utd`].
///
/// # Returns
///
/// * Returns a string pointer when input args normally, otherwise return nullptr.
/// [`OH_Utd.`]
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_GetReferenceUrl(pThis: *mut OH_Utd) -> *const ::core::ffi::c_char;
/// Get icon file from the [`OH_Utd`].
///
/// # Arguments
///
/// * `pThis` - Represents a pointer to an instance of [`OH_Utd`].
///
/// # Returns
///
/// * Returns a string pointer when input args normally, otherwise return nullptr.
/// [`OH_Utd.`]
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_GetIconFile(pThis: *mut OH_Utd) -> *const ::core::ffi::c_char;
/// Get belong to type id of the current [`OH_Utd`].
///
/// # Arguments
///
/// * `pThis` - Represents a pointer to an instance of [`OH_Utd`].
///
/// * `count` - Represents the return types count.
///
/// # Returns
///
/// * Returns string array when input args normally, otherwise return nullptr.
/// [`OH_Utd.`]
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_GetBelongingToTypes(
pThis: *mut OH_Utd,
count: *mut ::core::ffi::c_uint,
) -> *mut *const ::core::ffi::c_char;
/// Get filename extensions of the current [`OH_Utd`].
///
/// # Arguments
///
/// * `pThis` - Represents a pointer to an instance of [`OH_Utd`].
///
/// * `count` - Represents the return file extensions count.
///
/// # Returns
///
/// * Returns string array when input args normally, otherwise return nullptr.
/// [`OH_Utd.`]
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_GetFilenameExtensions(
pThis: *mut OH_Utd,
count: *mut ::core::ffi::c_uint,
) -> *mut *const ::core::ffi::c_char;
/// Get mime types of the current [`OH_Utd`].
///
/// # Arguments
///
/// * `pThis` - Represents a pointer to an instance of [`OH_Utd`].
///
/// * `count` - Represents the mime types count.
///
/// # Returns
///
/// * Returns string array when input args normally, otherwise return nullptr.
/// [`OH_Utd.`]
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_GetMimeTypes(
pThis: *mut OH_Utd,
count: *mut ::core::ffi::c_uint,
) -> *mut *const ::core::ffi::c_char;
/// Get type id by file name extension.
///
/// # Arguments
///
/// * `extension` - Represents file name extension.
///
/// * `count` - Represents the types count.
///
/// # Returns
///
/// * Returns string list of types. Must be destroyed with [`OH_Utd_DestroyStringList`] when not needed.
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_GetTypesByFilenameExtension(
extension: *const ::core::ffi::c_char,
count: *mut ::core::ffi::c_uint,
) -> *mut *const ::core::ffi::c_char;
/// Get type id by mime type.
///
/// # Arguments
///
/// * `mimeType` - Represents mime type
///
/// * `count` - Represents the types count.
///
/// # Returns
///
/// * Returns string list of types. Must be destroyed with [`OH_Utd_DestroyStringList`] when not needed.
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_GetTypesByMimeType(
mimeType: *const ::core::ffi::c_char,
count: *mut ::core::ffi::c_uint,
) -> *mut *const ::core::ffi::c_char;
/// Calculate relationships of two types.
///
/// # Arguments
///
/// * `srcTypeId` - Represents source type id.
///
/// * `destTypeId` - Represents target type id.
///
/// # Returns
///
/// * Returns the status code of the execution.
/// `false` Represents srcTypeId not belongs to destTypeId.
/// `true` Represents srcTypeId belongs to destTypeId.
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_BelongsTo(
srcTypeId: *const ::core::ffi::c_char,
destTypeId: *const ::core::ffi::c_char,
) -> bool;
/// Calculate relationships of two types.
///
/// # Arguments
///
/// * `srcTypeId` - Represents source type id.
///
/// * `destTypeId` - Represents target type id.
///
/// # Returns
///
/// * Returns the status code of the execution.
/// `false` Represents srcTypeId not lower level to destTypeId.
/// `true` Represents srcTypeId lower level to destTypeId.
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_IsLower(
srcTypeId: *const ::core::ffi::c_char,
destTypeId: *const ::core::ffi::c_char,
) -> bool;
/// Calculate relationships of two types.
///
/// # Arguments
///
/// * `srcTypeId` - Represents source type id.
///
/// * `destTypeId` - Represents target type id.
///
/// # Returns
///
/// * Returns the status code of the execution.
/// `false` Represents srcTypeId not higher level to destTypeId.
/// `true` Represents srcTypeId higher level to destTypeId.
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_IsHigher(
srcTypeId: *const ::core::ffi::c_char,
destTypeId: *const ::core::ffi::c_char,
) -> bool;
/// Calculate two [`OH_Utd`]s are equal.
///
/// # Arguments
///
/// * `utd1` - Represents a pointer to [`OH_Utd`] instance.
///
/// * `utd2` - Represents a pointer to [`OH_Utd`] instance.
///
/// # Returns
///
/// * Returns the status code of the execution.
/// `false` Represents utd1 and utd2 are not equal.
/// `true` Represents utd1 and utd2 are equal.
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_Equals(utd1: *mut OH_Utd, utd2: *mut OH_Utd) -> bool;
/// Destroy string list memory.
///
/// # Arguments
///
/// * `list` - Represents a point to string list.
///
/// * `count` - Represents string count in list.
///
/// Available since API-level: 12
#[cfg(feature = "api-12")]
#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
pub fn OH_Utd_DestroyStringList(
list: *mut *const ::core::ffi::c_char,
count: ::core::ffi::c_uint,
);
}