Lines Matching defs:OH_UdsHtml
69 typedef struct OH_UdsHtml OH_UdsHtml;
250 * @brief Creation a pointer to the instance of the {@link OH_UdsHtml}.
252 * @return If the operation is successful, a pointer to the instance of the {@link OH_UdsHtml}
254 * @see OH_UdsHtml
257 OH_UdsHtml* OH_UdsHtml_Create();
260 * @brief Destroy a pointer that points to the {@link OH_UdsHtml} instance.
262 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
263 * @see OH_UdsHtml
266 void OH_UdsHtml_Destroy(OH_UdsHtml* pThis);
269 * @brief Get html from the {@link OH_UdsHtml}.
271 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
273 * @see OH_UdsHtml
276 const char* OH_UdsHtml_GetType(OH_UdsHtml* pThis);
279 * @brief Get content from the {@link OH_UdsHtml}.
281 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
283 * @see OH_UdsHtml
286 const char* OH_UdsHtml_GetContent(OH_UdsHtml* pThis);
289 * @brief Get plain content from the {@link OH_UdsHtml}.
291 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
293 * @see OH_UdsHtml
296 const char* OH_UdsHtml_GetPlainContent(OH_UdsHtml* pThis);
299 * @brief Set content to the {@link OH_UdsHtml}.
301 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
306 * @see OH_UdsHtml Udmf_ErrCode
309 int OH_UdsHtml_SetContent(OH_UdsHtml* pThis, const char* content);
312 * @brief Set plain content to the {@link OH_UdsHtml}.
314 * @param pThis Represents a pointer to an instance of {@link OH_UdsHtml}.
319 * @see OH_UdsHtml Udmf_ErrCode
322 int OH_UdsHtml_SetPlainContent(OH_UdsHtml* pThis, const char* plainContent);