#pragma once #include #include #include #include #include #define EZIPC_TEST_PATH "/tmp/ezi_conn_test" typedef enum msg_type_e { MSG_TEXT, MSG_OK, MSG_EXIT, } msg_type; typedef struct msg_s { msg_type type; uint8_t data[128]; } msg;