New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / c / OpenPci.c
bloba1b9f6682ba899cea0d4b725e373ec57ee689cc8
1 /*
2 Copyright (C) 2004, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Opens and lists all PCI devices available through PCI classes
6 Lang: English
7 */
8 #include <proto/exec.h>
10 int main(void)
12 /* Initialize PCI classes */
13 CloseLibrary(OpenLibrary("DRIVERS:pci.hidd",0));
15 /* Initialize PCI linux driver. Requires uid=0 to operate */
16 CloseLibrary(OpenLibrary("DRIVERS:pcilinux.hidd",0));
17 CloseLibrary(OpenLibrary("DRIVERS:pcipc.hidd",0));
19 return 0;