From 39cebd1dd0360319d5a2a73411773bba74ba8d7a Mon Sep 17 00:00:00 2001 From: Erik Troan Date: Tue, 9 May 2000 16:52:57 +0000 Subject: added code tags --- isys/probe.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'isys/probe.h') diff --git a/isys/probe.h b/isys/probe.h index f236a9845..ea14b5d94 100644 --- a/isys/probe.h +++ b/isys/probe.h @@ -7,6 +7,7 @@ struct kddevice { char * name; /* malloced */ char * model; enum deviceClass class; + int code; }; struct knownDevices { @@ -16,9 +17,9 @@ struct knownDevices { }; struct knownDevices kdInit(void); -int kdFindNetList(struct knownDevices * devices); -int kdFindIdeList(struct knownDevices * devices); -int kdFindScsiList(struct knownDevices * devices); +int kdFindNetList(struct knownDevices * devices, int code); +int kdFindIdeList(struct knownDevices * devices, int code); +int kdFindScsiList(struct knownDevices * devices, int code); void kdFree(struct knownDevices * devices); void kdAddDevice(struct knownDevices * devices, enum deviceClass devClass, char * devName, char * devModel); -- cgit