1 #ifndef _ECORE_CON_EET_DESCTRIPOR_EXAMPLE_H
2 #define _ECORE_CON_EET_DESCTRIPOR_EXAMPLE_H
3 
4 #include <Eet.h>
5 #include <Ecore_Con_Eet.h>
6 
7 #define EXAMPLE_STREAM "example_stream"
8 
9 typedef struct
10 {
11    int id;
12    char *message;
13    char *not_sending;
14 }ECE_Example;
15 
16 void ece_example_descriptor_init(void);
17 void ece_example_descriptor_shutdown(void);
18 void ece_example_descriptor_register_descs(Ecore_Con_Eet *eet_svr);
19 
20 #endif
21