ecore_con: use the right type for prototype.

This commit is contained in:
Cedric BAIL 2017-01-06 15:58:26 -08:00
parent cf501ee7eb
commit 78bd2ea6f5
1 changed files with 3 additions and 3 deletions

View File

@ -14,14 +14,14 @@
#include "ecore_con_eet_descriptor_example.h"
Eina_Bool
_eet_svr_discnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply EINA_UNUSED, Ecore_Con_Client *conn EINA_UNUSED)
_eet_svr_discnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply EINA_UNUSED, Ecore_Con_Server *conn EINA_UNUSED)
{
ecore_main_loop_quit();
return EINA_FALSE;
}
Eina_Bool
_eet_svr_cnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply, Ecore_Con_Client *conn EINA_UNUSED)
static Eina_Bool
_eet_svr_cnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply, Ecore_Con_Server *conn EINA_UNUSED)
{
/* Only id and message parameter are sent to server. not_sending, parameter
* is not sent, as it is not added to the eet descriptor. */