blob: f236a9845fed9db5b0ce4149e44c4ceecf9e5585 (
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
|
#ifndef H_PROBE
#define H_PROBE
#include "kudzu/kudzu.h"
struct kddevice {
char * name; /* malloced */
char * model;
enum deviceClass class;
};
struct knownDevices {
struct kddevice * known;
int numKnown;
int numKnownAlloced;
};
struct knownDevices kdInit(void);
int kdFindNetList(struct knownDevices * devices);
int kdFindIdeList(struct knownDevices * devices);
int kdFindScsiList(struct knownDevices * devices);
void kdFree(struct knownDevices * devices);
void kdAddDevice(struct knownDevices * devices, enum deviceClass devClass,
char * devName, char * devModel);
#endif
|