mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-31 18:20:10 +01:00
41 lines
1.6 KiB
C
41 lines
1.6 KiB
C
/* NetworkManager Wireless Applet -- Display wireless access points and allow user control
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* (C) Copyright 2007 - 2012 Red Hat, Inc.
|
|
*/
|
|
|
|
|
|
/* WARNING: this file is private API between nm-applet and various GNOME
|
|
* bits; it may change without notice and is not guaranteed to be stable.
|
|
*/
|
|
|
|
#ifndef NMA_UI_UTILS_H
|
|
#define NMA_UI_UTILS_H
|
|
|
|
#include <nm-device.h>
|
|
|
|
const char *nma_utils_get_device_vendor (NMDevice *device);
|
|
const char *nma_utils_get_device_product (NMDevice *device);
|
|
const char *nma_utils_get_device_description (NMDevice *device);
|
|
const char *nma_utils_get_device_generic_type_name (NMDevice *device);
|
|
const char *nma_utils_get_device_type_name (NMDevice *device);
|
|
|
|
char **nma_utils_disambiguate_device_names (NMDevice **devices,
|
|
int num_devices);
|
|
char *nma_utils_get_connection_device_name (NMConnection *connection);
|
|
|
|
#endif /* NMA_UI_UTILS_H */
|
|
|