From 7d6c36d6154cd2863b5606292e87a7d954ac8fe1 Mon Sep 17 00:00:00 2001 From: Semun Lee Date: Tue, 12 Jul 2016 23:02:44 +0900 Subject: [PATCH] Remove declaration of remove functions Change-Id: I7f1a663f24b097f0a655d4034705dbd20668a73e Signed-off-by: Semun Lee --- include/message-port.h | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/include/message-port.h b/include/message-port.h index 4a32929..2f29a90 100644 --- a/include/message-port.h +++ b/include/message-port.h @@ -229,32 +229,6 @@ EXPORT_API int messageport_send_bidirectional_message(int id, const char *remote */ EXPORT_API int messageport_send_bidirectional_trusted_message(int id, const char *remote_app_id, const char *remote_port, bundle *data); - -/** - * @brief Gets the name of the local message port. - * - * @param [in] id The message port id returned by messageport_register_local_port() or messageport_register_trusted_local_port() - * @param [out] name The name of the local message port - * @return 0 on success, otherwise a negative error value. - * @retval #MESSAGEPORT_ERROR_NONE Successful - * @retval #MESSAGEPORT_ERROR_INVALID_PARAMETER Invalid parameter - * @retval #MESSAGEPORT_ERROR_OUT_OF_MEMORY Out of memory - * @remarks @a name must be released with free() by you - */ -EXPORT_API int messageport_get_local_port_name(int id, char **name); - -/** - * @brief Checks if the local message port is trusted. - * - * @param [in] id The message port id returned by messageport_register_local_port() or messageport_register_trusted_local_port() - * @param [out] @c true if the local message port is trusted - * @return 0 on success, otherwise a negative error value. - * @retval #MESSAGEPORT_ERROR_NONE Successful - * @retval #MESSAGEPORT_ERROR_INVALID_PARAMETER Invalid parameter - * @retval #MESSAGEPORT_ERROR_OUT_OF_MEMORY Out of memory - */ -EXPORT_API int messageport_check_trusted_local_port(int id, bool *trusted); - /** * @} */ -- 2.7.4