
libhardware 0.0.1
=================
libhardware is a static library used in many utilities that are part
of the AGX's GNU/Linux distribution "Bad Penguin". It provides functions
to access information about the hardware of your system.



How it works
============

You first have to create a computer structure
    TComputer mypc = create_computer();

TComputer contains a lot of member of type TChain
that you can access in a very easy way (libbadpenguin).
It contains:
- TChain *pci;		// List of PCI devices

Each member is NULL when you create the computer structure
you have to call your self the function and procedure that
you need. This is left to you for speed purpose, the goal
of the library is to let you choose wich information do
you want acquire.



Functions to probe devices
==========================

- query_pci_devices(pc,1);		// get PCI devices
