blob: 1803b28a138625b3508af3adf41996097d357c3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* (c) BayCom GmbH, http://www.baycom.de, info@baycom.de
*
* See the COPYING file for copyright information and
* how to reach the author.
*
*/
typedef struct
{
netceiver_info_t *nci;
int nci_num;
} netceiver_info_list_t;
DLL_SYMBOL netceiver_info_list_t *nc_get_list(void);
DLL_SYMBOL int nc_lock_list(void);
DLL_SYMBOL int nc_unlock_list(void);
void handle_tca (netceiver_info_t * nc_info);
|