| /** | |
| * @file shm.h | |
| * @author hq | |
| * @brief | |
| * @version 1.0 | |
| * @date 2022-12-16 | |
| * | |
| * @copyright Copyright (c) 2022 | |
| * | |
| */ | |
| #ifndef __LYNQ_URC_SOCKET__ | |
| #define __LYNQ_URC_SOCKET__ | |
| #ifdef __cplusplus | |
| extern "C" { | |
| #endif | |
| int lynq_open_broadcast_urc_socket(); | |
| int lynq_broadcast_urc_msg(void * msg, int size); | |
| int lynq_register_urc_socket(); | |
| int lynq_recv_urc_msg(void * buffer, int size); | |
| #ifdef __cplusplus | |
| } | |
| #endif | |
| #endif //#ifndef __LYNQ_URC_SOCKET__ |