make the favorites API to use browser-provider
[platform/core/api/favorites.git] / include / favorites.h
index a137104..8000481 100644 (file)
@@ -53,14 +53,14 @@ typedef enum favorites_error{
 typedef struct {\r
        char* address;  /**< Bookmark URL */\r
        char* title;    /**< The title of the bookmark */\r
-       char* creation_date;    /**< The date of creation */\r
-       char* update_date;      /**< The last updated date */\r
-       char* visit_date;       /**< The last visit date */\r
+       char* creation_date;    /**< The date of creation(yyyy-mm-dd hh:mm:ss) */\r
+       char* update_date;      /**< The last updated date(yyyy-mm-dd hh:mm:ss) */\r
+       char* visit_date;       /**< The last visit date(yyyy-mm-dd hh:mm:ss) */\r
        int id; /**< The unique ID of bookmark */\r
-       bool is_folder; /**< property bookmark or folder\n @c true: folder, @c false: bookmark */\r
+       bool is_folder; /**< property bookmark or folder\n @c 1: folder, @c 0: bookmark */\r
        int folder_id;  /**< The ID of parent folder */\r
        int order_index;        /**< The order index of bookmarks when show the list at the browser */\r
-       bool editable;  /**< The flag of editability\n @c true : writable, @c false: read-only, not ediable */\r
+       bool editable;  /**< The flag of editability\n @c 1 : writable, @c 0: read-only, not ediable */\r
 } favorites_bookmark_entry_s;\r
 \r
 /**\r