mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-27 20:48:13 +02:00
This commit adds functionality to nmtui to enable or disable the Wi-Fi and WWAN radios. Additionally, it provides a display of the hardware status. https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1655
11 lines
262 B
C
11 lines
262 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2023 Javier Sánchez Parra, javsanpar@riseup.net
|
|
*/
|
|
|
|
#ifndef NMTUI_RADIO_H
|
|
#define NMTUI_RADIO_H
|
|
|
|
NmtNewtForm *nmtui_radio(gboolean is_top, int argc, char **argv);
|
|
|
|
#endif /* NMTUI_RADIO_H */
|