/**
* @brief Gets the selected text synchronously.
*
- * @remarks @a text must be released using free().
+ * @details If multi-line text is selected, the result will contain '\n' for each newline character.
+ * And if the selected text is empty, the result will be an empty string.
*
* @since_tizen 4.0
*
*
* @privilege %http://tizen.org/privilege/ime
*
+ * @remarks @a text must be released using free().
+ *
* @param[out] text The selected text
*
* @return 0 on success, otherwise a negative error value
* @retval #IME_ERROR_PERMISSION_DENIED The application does not have the privilege to call this function
* @retval #IME_ERROR_NOT_RUNNING IME main loop isn't started yet
*/
-EXPORT_API int ime_get_selected_text(char **text);
+int ime_get_selected_text(char **text);
/**
* @brief This API returns the pointer of input panel main window.