enlightenment/src/bin/e_ipc.h

29 lines
438 B
C

/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#ifdef E_TYPEDEFS
#include "e_ipc_handlers_list.h"
typedef enum _E_Ipc_Domain
{
E_IPC_DOMAIN_NONE,
E_IPC_DOMAIN_SETUP,
E_IPC_DOMAIN_REQUEST,
E_IPC_DOMAIN_REPLY,
E_IPC_DOMAIN_EVENT,
E_IPC_DOMAIN_LAST
} E_Ipc_Domain;
typedef int E_Ipc_Op;
#else
#ifndef E_IPC_H
#define E_IPC_H
EAPI int e_ipc_init(void);
EAPI void e_ipc_shutdown(void);
#endif
#endif