aboutsummaryrefslogtreecommitdiffstats
path: root/en/6/download_index.php
diff options
context:
space:
mode:
authorYuri Chornoivan <yurchor@ukr.net>2018-10-11 19:39:48 +0300
committerYuri Chornoivan <yurchor@ukr.net>2018-10-11 19:39:48 +0300
commit4006e23324e4352a2d3ed87d6e927c4e8acd0798 (patch)
tree4e2a9f6c99db8db41ff86ba2979a6fe9ba571fbf /en/6/download_index.php
parentf7f4bcc3548e4d5c1e13dc8b542b7792ea66a498 (diff)
downloadwww-4006e23324e4352a2d3ed87d6e927c4e8acd0798.tar
www-4006e23324e4352a2d3ed87d6e927c4e8acd0798.tar.gz
www-4006e23324e4352a2d3ed87d6e927c4e8acd0798.tar.bz2
www-4006e23324e4352a2d3ed87d6e927c4e8acd0798.tar.xz
www-4006e23324e4352a2d3ed87d6e927c4e8acd0798.zip
Update Estonian translation
Diffstat (limited to 'en/6/download_index.php')
0 files changed, 0 insertions, 0 deletions
9 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/* Copyright 1999-2003 Red Hat, Inc.
 *
 * This software may be freely redistributed under the terms of the GNU
 * public license.
 *
 * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

#ifndef _KUDZU_SERIAL_H_
#define _KUDZU_SERIAL_H_

#include "device.h"

struct serialDevice {
	/* common fields */
	struct device *next;	/* next device in list */
	int index;
	enum deviceClass type;	/* type */
	enum deviceBus bus;		/* bus it's attached to */
	char * device;		/* device file associated with it */
	char * driver;		/* driver to load, if any */
	char * desc;		/* a description */
	int detached;
	/* serial-specific fields */
	struct serialDevice *(*newDevice) (struct serialDevice *dev);
	void (*freeDevice) (struct serialDevice *dev);
	void (*writeDevice) (FILE *file, struct serialDevice *dev);
	int (*compareDevice) (struct serialDevice *dev1, struct serialDevice *dev2);
	char * pnpmfr;