Lines Matching defs:OH_UdsPlainText

55 typedef struct OH_UdsPlainText OH_UdsPlainText;
100 * @brief Creation a pointer to the instance of the {@link OH_UdsPlainText}.
102 * @return If the operation is successful, a pointer to the instance of the {@link OH_UdsPlainText}
104 * @see OH_UdsPlainText
107 OH_UdsPlainText* OH_UdsPlainText_Create();
110 * @brief Destroy a pointer that points to the {@link OH_UdsPlainText} instance.
112 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
113 * @see OH_UdsPlainText
116 void OH_UdsPlainText_Destroy(OH_UdsPlainText* pThis);
119 * @brief Get type id from the {@link OH_UdsPlainText}.
121 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
123 * @see OH_UdsPlainText
126 const char* OH_UdsPlainText_GetType(OH_UdsPlainText* pThis);
129 * @brief Get content from the {@link OH_UdsPlainText}.
131 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
133 * @see OH_UdsPlainText
136 const char* OH_UdsPlainText_GetContent(OH_UdsPlainText* pThis);
139 * @brief Get abstract from the {@link OH_UdsPlainText}.
141 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
143 * @see OH_UdsPlainText
146 const char* OH_UdsPlainText_GetAbstract(OH_UdsPlainText* pThis);
149 * @brief Set content to the {@link OH_UdsPlainText}.
151 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
156 * @see OH_UdsPlainText Udmf_ErrCode
159 int OH_UdsPlainText_SetContent(OH_UdsPlainText* pThis, const char* content);
162 * @brief Set abstract to the {@link OH_UdsPlainText}.
164 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
169 * @see OH_UdsPlainText Udmf_ErrCode
172 int OH_UdsPlainText_SetAbstract(OH_UdsPlainText* pThis, const char* abstract);