blob: 641dcb4e7446ccf126d776d622691f68a6756d32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* @file etherinfo_struct.h
* @author David Sommerseth <dsommers@wsdsommers.usersys.redhat.com>
* @date Fri Sep 4 19:06:06 2009
*
* @brief Contains the internal ethtool.etherinfo data structure
*
*/
#ifndef _ETHERINFO_STRUCT_H
#define _ETHERINFO_STRUCT_H
/**
* Contains the internal data structure of the
* ethtool.etherinfo object.
*
*/
typedef struct {
PyObject_HEAD
struct etherinfo *info; /**< Contains information about one ethernet device */
} etherinfo_py;
#endif
|