blob: ea2bd2358f337605c5ceba14f191ca7935dfb446 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// SPDX-License-Identifier: GPL-2.0+
/* NetworkManager Applet -- allow user control over networking
*
* Dan Williams <dcbw@redhat.com>
*
* (C) Copyright 2008 Red Hat, Inc.
* (C) Copyright 2008 Novell, Inc.
*/
#ifndef __APPLET_DEVICE_ETHERNET_H__
#define __APPLET_DEVICE_ETHERNET_H__
#include "applet.h"
NMADeviceClass *applet_device_ethernet_get_class (NMApplet *applet);
#endif /* __APPLET_DEVICE_ETHERNET_H__ */
|