eldbus: add eldbus_message_signal_new to public header

Test Plan: elementary tests

Reviewers: cedric

Subscribers: seoz, cedric

Differential Revision: https://phab.enlightenment.org/D2772
This commit is contained in:
Lukasz Stanislawski 2015-08-24 10:07:40 +02:00 committed by Stefan Schmidt
parent bdebfe7962
commit 0416d4d9bb
1 changed files with 11 additions and 0 deletions

View File

@ -86,6 +86,17 @@ EAPI const char *eldbus_message_signature_get(const Eldbus_Message *ms
*/
EAPI Eldbus_Message *eldbus_message_method_call_new(const char *dest, const char *path, const char *iface, const char *method) EINA_ARG_NONNULL(1, 2, 3, 4) EINA_WARN_UNUSED_RESULT EINA_MALLOC;
/**
* @brief Create a new signal message.
*
* @param path object path
* @param iface interface name
* @param name name of the signal to be broadcasted
*
* @return a new Eldbus_Message, free with eldbus_message_unref()
*/
EAPI Eldbus_Message *eldbus_message_signal_new(const char *path, const char *interface, const char *name) EINA_ARG_NONNULL(1, 2, 3) EINA_WARN_UNUSED_RESULT;
/**
* @brief Create a new message that is an error reply to another message.
*