blob: eeb0fa4935e9c1aa42d39e5fad92a1cac1a909f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef __NET_H__
#define __NET_H__
#include "hardinfo.h"
typedef struct _NetDevice NetDevice;
struct _NetDevice {
gchar *iface;
guint recv_bytes;
guint recv_errors;
guint recv_packets;
guint trans_bytes;
guint trans_errors;
guint trans_packets;
NetDevice *next;
};
NetDevice *hi_scan_net(void);
GtkWidget *net_get_widget(MainWindow *mainwindow);
void hi_show_net_info(MainWindow *mainwindow, NetDevice *device);
gboolean net_update(gpointer data);
#endif
|