| 2019 | } |
| 2020 | |
| 2021 | void SigSession::device_lib_event_callback(int event) |
| 2022 | { |
| 2023 | if (_session == NULL) |
| 2024 | { |
| 2025 | dsv_err("Error!Global variable \"_session\" is null."); |
| 2026 | return; |
| 2027 | } |
| 2028 | _session->on_device_lib_event(event); |
| 2029 | } |
| 2030 | |
| 2031 | void SigSession::on_device_lib_event(int event) |
| 2032 | { |
nothing calls this directly
no test coverage detected