You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef EVISUM_SERVER_H
|
|
|
|
#define EVISUM_SERVER_H
|
|
|
|
|
|
|
|
#include <Eina.h>
|
|
|
|
#include "evisum_actions.h"
|
|
|
|
|
|
|
|
Eina_Bool
|
|
|
|
evisum_server_init(void *data);
|
|
|
|
|
|
|
|
void
|
|
|
|
evisum_server_shutdown(void);
|
|
|
|
|
|
|
|
Eina_Bool
|
|
|
|
evisum_server_client_add(Evisum_Action action, int pid);
|
|
|
|
|
|
|
|
#endif
|