Lines Matching refs:OH_UdsContentForm
94 typedef struct OH_UdsContentForm OH_UdsContentForm;
680 * @brief Creation a pointer to the instance of the {@link OH_UdsContentForm}.
682 * @return If the operation is successful, a pointer to the instance of the {@link OH_UdsContentForm}
684 * @see OH_UdsContentForm
687 OH_UdsContentForm* OH_UdsContentForm_Create();
690 * @brief Destroy a pointer that points to the {@link OH_UdsContentForm} instance.
692 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
693 * @see OH_UdsContentForm
696 void OH_UdsContentForm_Destroy(OH_UdsContentForm* pThis);
699 * @brief Get type id from the {@link OH_UdsContentForm}.
701 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
703 * @see OH_UdsContentForm
706 const char* OH_UdsContentForm_GetType(OH_UdsContentForm* pThis);
709 * @brief Get thumb data from the {@link OH_UdsContentForm}.
711 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
718 * @see OH_UdsContentForm Udmf_ErrCode
721 int OH_UdsContentForm_GetThumbData(OH_UdsContentForm* pThis, unsigned char** thumbData, unsigned int* len);
724 * @brief Get description from the {@link OH_UdsContentForm}.
726 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
728 * @see OH_UdsContentForm
731 const char* OH_UdsContentForm_GetDescription(OH_UdsContentForm* pThis);
734 * @brief Get title from the {@link OH_UdsContentForm}.
736 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
738 * @see OH_UdsContentForm
741 const char* OH_UdsContentForm_GetTitle(OH_UdsContentForm* pThis);
744 * @brief Get thumb data from the {@link OH_UdsContentForm}.
746 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
753 * @see OH_UdsContentForm Udmf_ErrCode
756 int OH_UdsContentForm_GetAppIcon(OH_UdsContentForm* pThis, unsigned char** appIcon, unsigned int* len);
759 * @brief Get app name from the {@link OH_UdsContentForm}.
761 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
763 * @see OH_UdsContentForm
766 const char* OH_UdsContentForm_GetAppName(OH_UdsContentForm* pThis);
769 * @brief Get link url from the {@link OH_UdsContentForm}.
771 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
773 * @see OH_UdsContentForm
776 const char* OH_UdsContentForm_GetLinkUri(OH_UdsContentForm* pThis);
779 * @brief Set thumb data to the {@link OH_UdsContentForm}.
781 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
787 * @see OH_UdsContentForm Udmf_ErrCode
790 int OH_UdsContentForm_SetThumbData(OH_UdsContentForm* pThis, const unsigned char* thumbData, unsigned int len);
793 * @brief Set description to the {@link OH_UdsContentForm}.
795 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
800 * @see OH_UdsContentForm Udmf_ErrCode
803 int OH_UdsContentForm_SetDescription(OH_UdsContentForm* pThis, const char* description);
806 * @brief Set title to the {@link OH_UdsContentForm}.
808 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
813 * @see OH_UdsContentForm Udmf_ErrCode
816 int OH_UdsContentForm_SetTitle(OH_UdsContentForm* pThis, const char* title);
819 * @brief Set thumb data to the {@link OH_UdsContentForm}.
821 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
827 * @see OH_UdsContentForm Udmf_ErrCode
830 int OH_UdsContentForm_SetAppIcon(OH_UdsContentForm* pThis, const unsigned char* appIcon, unsigned int len);
833 * @brief Set app name to the {@link OH_UdsContentForm}.
835 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
840 * @see OH_UdsContentForm Udmf_ErrCode
843 int OH_UdsContentForm_SetAppName(OH_UdsContentForm* pThis, const char* appName);
846 * @brief Set link uri to the {@link OH_UdsContentForm}.
848 * @param pThis Represents a pointer to an instance of {@link OH_UdsContentForm}.
853 * @see OH_UdsContentForm Udmf_ErrCode
856 int OH_UdsContentForm_SetLinkUri(OH_UdsContentForm* pThis, const char* linkUri);