File: devproc.h

package info (click to toggle)
lxpanel 0.11.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,136 kB
  • sloc: ansic: 33,536; makefile: 541; xml: 310; python: 62; sh: 26
file content (17 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef HAVE_DEVPROC_H
#define HAVE_DEVPROC_H

struct linktest_value {
        unsigned int    cmd;
        unsigned int    data;
};

FILE *netproc_open(void);
void netproc_close(FILE *fp);
int netproc_netdevlist_clear(NETDEVLIST_PTR *netdev_list);
int netproc_scandevice(int sockfd, int iwsockfd, FILE *fp, NETDEVLIST_PTR *netdev_list);
void netproc_print(NETDEVLIST_PTR netdev_list);
void netproc_listener(FNETD *fnetd);
void netproc_devicelist_clear(NETDEVLIST_PTR *netdev_list);

#endif