1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- extern "C" {
- struct bt_mesh_proxy_cb {
-
- void (*identity_enabled)(uint16_t net_idx);
-
- void (*identity_disabled)(uint16_t net_idx);
- };
- static const STRUCT_SECTION_ITERABLE( \
- bt_mesh_proxy_cb, _CONCAT(bt_mesh_proxy_cb_, _name))
- int bt_mesh_proxy_identity_enable(void);
- }
|