express/src/bin/callbacks.c

15 lines
528 B
C
Raw Normal View History

#include "private.h"
#include "callbacks.h"
void
_callback_server_connected(Express_Network *net EINA_UNUSED, const char *event EINA_UNUSED, const char *source, const char **params EINA_UNUSED, unsigned int count EINA_UNUSED, void *data)
{
DBG("Server %s Connected", source);
}
void
_callback_server_disconnected(Express_Network *net EINA_UNUSED, const char *event EINA_UNUSED, const char *source, const char **params EINA_UNUSED, unsigned int count EINA_UNUSED, void *data)
{
DBG("Server %s Disconnected", source);
}