you.chen | 2f5cd7b | 2023-03-20 19:06:08 +0800 | [diff] [blame^] | 1 | /**
|
| 2 | * @file shm.h
|
| 3 | * @author hq
|
| 4 | * @brief
|
| 5 | * @version 1.0
|
| 6 | * @date 2022-12-16
|
| 7 | *
|
| 8 | * @copyright Copyright (c) 2022
|
| 9 | *
|
| 10 | */
|
| 11 | #ifndef __LYNQ_URC_SOCKET__
|
| 12 | #define __LYNQ_URC_SOCKET__
|
| 13 |
|
| 14 | #ifdef __cplusplus
|
| 15 | extern "C" {
|
| 16 | #endif
|
| 17 | int lynq_open_broadcast_urc_socket();
|
| 18 | int lynq_broadcast_urc_msg(void * msg, int size);
|
| 19 | int lynq_register_urc_socket();
|
| 20 | int lynq_recv_urc_msg(void * buffer, int size);
|
| 21 | #ifdef __cplusplus
|
| 22 | }
|
| 23 | #endif
|
| 24 | #endif //#ifndef __LYNQ_URC_SOCKET__
|