Lines Matching refs:OH_UdsHtml

66 typedef struct OH_UdsHtml OH_UdsHtml;

261 * @brief Creation a pointer to the instance of the {@link OH_UdsHtml}.
263 * @return If the operation is successful, a pointer to the instance of the {@link OH_UdsHtml}
265 * @see OH_UdsHtml
268 OH_UdsHtml* OH_UdsHtml_Create();
271 * @brief Destroy a pointer that points to the {@link OH_UdsHtml} instance.
273 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
274 * @see OH_UdsHtml
277 void OH_UdsHtml_Destroy(OH_UdsHtml* pThis);
280 * @brief Get html from the {@link OH_UdsHtml}.
282 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
284 * @see OH_UdsHtml
287 const char* OH_UdsHtml_GetType(OH_UdsHtml* pThis);
290 * @brief Get content from the {@link OH_UdsHtml}.
292 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
294 * @see OH_UdsHtml
297 const char* OH_UdsHtml_GetContent(OH_UdsHtml* pThis);
300 * @brief Get plain content from the {@link OH_UdsHtml}.
302 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
304 * @see OH_UdsHtml
307 const char* OH_UdsHtml_GetPlainContent(OH_UdsHtml* pThis);
310 * @brief Set content to the {@link OH_UdsHtml}.
312 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
317 * @see OH_UdsHtml Udmf_ErrCode
320 int OH_UdsHtml_SetContent(OH_UdsHtml* pThis, const char* content);
323 * @brief Set plain content to the {@link OH_UdsHtml}.
325 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
330 * @see OH_UdsHtml Udmf_ErrCode
333 int OH_UdsHtml_SetPlainContent(OH_UdsHtml* pThis, const char* plainContent);