Lines Matching defs:OH_UdsPlainText

52 typedef struct OH_UdsPlainText OH_UdsPlainText;

111 * @brief Creation a pointer to the instance of the {@link OH_UdsPlainText}.
113 * @return If the operation is successful, a pointer to the instance of the {@link OH_UdsPlainText}
115 * @see OH_UdsPlainText
118 OH_UdsPlainText* OH_UdsPlainText_Create();
121 * @brief Destroy a pointer that points to the {@link OH_UdsPlainText} instance.
123 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
124 * @see OH_UdsPlainText
127 void OH_UdsPlainText_Destroy(OH_UdsPlainText* pThis);
130 * @brief Get type id from the {@link OH_UdsPlainText}.
132 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
134 * @see OH_UdsPlainText
137 const char* OH_UdsPlainText_GetType(OH_UdsPlainText* pThis);
140 * @brief Get content from the {@link OH_UdsPlainText}.
142 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
144 * @see OH_UdsPlainText
147 const char* OH_UdsPlainText_GetContent(OH_UdsPlainText* pThis);
150 * @brief Get abstract from the {@link OH_UdsPlainText}.
152 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
154 * @see OH_UdsPlainText
157 const char* OH_UdsPlainText_GetAbstract(OH_UdsPlainText* pThis);
160 * @brief Set content to the {@link OH_UdsPlainText}.
162 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
167 * @see OH_UdsPlainText Udmf_ErrCode
170 int OH_UdsPlainText_SetContent(OH_UdsPlainText* pThis, const char* content);
173 * @brief Set abstract to the {@link OH_UdsPlainText}.
175 * @param pThis Represents a pointer to an instance of {@link OH_UdsPlainText}.
180 * @see OH_UdsPlainText Udmf_ErrCode
183 int OH_UdsPlainText_SetAbstract(OH_UdsPlainText* pThis, const char* abstract);