X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Ffavorites.h;h=80004815597bdec0572dafd8c8cd18b99712ab13;hb=99e0ab12adbccba3633e4f5945904252a8c6cf81;hp=a1371043a78ed1c51c929b68c5fbd4b16a308699;hpb=043f4fcb8772a089bf1e6e099c099fcfab9cb3c4;p=platform%2Fcore%2Fapi%2Ffavorites.git diff --git a/include/favorites.h b/include/favorites.h index a137104..8000481 100644 --- a/include/favorites.h +++ b/include/favorites.h @@ -53,14 +53,14 @@ typedef enum favorites_error{ typedef struct { char* address; /**< Bookmark URL */ char* title; /**< The title of the bookmark */ - char* creation_date; /**< The date of creation */ - char* update_date; /**< The last updated date */ - char* visit_date; /**< The last visit date */ + char* creation_date; /**< The date of creation(yyyy-mm-dd hh:mm:ss) */ + char* update_date; /**< The last updated date(yyyy-mm-dd hh:mm:ss) */ + char* visit_date; /**< The last visit date(yyyy-mm-dd hh:mm:ss) */ int id; /**< The unique ID of bookmark */ - bool is_folder; /**< property bookmark or folder\n @c true: folder, @c false: bookmark */ + bool is_folder; /**< property bookmark or folder\n @c 1: folder, @c 0: bookmark */ int folder_id; /**< The ID of parent folder */ int order_index; /**< The order index of bookmarks when show the list at the browser */ - bool editable; /**< The flag of editability\n @c true : writable, @c false: read-only, not ediable */ + bool editable; /**< The flag of editability\n @c 1 : writable, @c 0: read-only, not ediable */ } favorites_bookmark_entry_s; /**