* @brief Enumeration for the result status of widget operation.
* @since_tizen 2.3.1
*/
-typedef enum widget_error
-{
+typedef enum widget_error {
WIDGET_ERROR_NONE = TIZEN_ERROR_NONE, /**< Operation is successfully completed */
WIDGET_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid function parameter */
WIDGET_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of memory */
WIDGET_ERROR_ALREADY_STARTED = TIZEN_ERROR_WIDGET | 0x0004, /**< Operation is already started */
WIDGET_ERROR_NOT_EXIST = TIZEN_ERROR_WIDGET | 0x0008, /**< Not exists */
WIDGET_ERROR_DISABLED = TIZEN_ERROR_WIDGET | 0x0010, /**< Disabled */
- WIDGET_ERROR_MAX_EXCEED = TIZEN_ERROR_WIDGET | 0x0011, /* *< Max instance exceed */
+ WIDGET_ERROR_MAX_EXCEEDED = TIZEN_ERROR_WIDGET | 0x0011, /**< Maximum number of instances exceeded (Since 3.0) */
} widget_error_e;
/**