2 Copyright (C) 2003-2009, The AROS Development Team.
11 #include <proto/dos.h>
14 /*Memory for the PCI Information*/
17 char Driver_name
[200];
19 char Hardware_info
[200];
21 char Description
[200];
22 char Vendor_name
[200];
23 char Product_name
[200];
36 char Rangelist_0
[200];
37 char Rangelist_1
[200];
38 char Rangelist_2
[200];
39 char Rangelist_3
[200];
40 char Rangelist_4
[200];
41 char Rangelist_5
[200];
45 /*Save only the displayed PCI Information to RAM Disk*/
46 void SaveToDisk(struct PCIInfo
*DeviceInfo
);
48 /*Just Open a new Textfile in RAM Disk. No writing yet*/
49 BOOL
OpenPCIInfoFile(void);
51 void ClosePCIInfoFile(void);
52 /*Closes the file opened by OpenPCIInfoFile*/
54 /*Writes a set of PCI Information to the Opened file*/
55 void WriteToPCIInfoFile(struct PCIInfo
*DeviceInfo
);
57 void CleanUpPCIToolInfo(struct PCIInfo
*DeviceInfo
);
61 extern BPTR DeviceInfoFile
;
63 #endif /*SAVEINFO_H_*/