home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / windr440.zip / windrive.zip / WinDriver / samples / pci_dump / files.txt next >
File List  |  2000-03-30  |  1KB  |  31 lines

  1. Files:
  2.   pci_dump.c
  3.       The main file which implements scanning of the 
  4.       PCI bus, and printing the PCI configuration registers
  5.       for all PCI cards found.
  6.   pci_dump.mak
  7.       MS-Visual C++ 4.0 (and above) compatible make file.
  8.   pci_dump.mdp
  9.       MS-Visual C++ 4.0 (and above) compatible project file.
  10.   files.txt
  11.       Describes the files.
  12.  
  13. Compiling this project:
  14.   If you are using MS-Visual C++, then open the pci_dump.mdp project file, and
  15.   compile.
  16.  
  17.   If using a different compiler:
  18.   - Create a new project. Choose console mode project.
  19.   - Include the following files in the project:
  20.       pci_dump.c
  21.       \windrvr\samples\shared\pci_diag_lib.c
  22.       \windrvr\samples\shared\print_struct.c
  23.  
  24. Converting to a GUI application:
  25.   This sample was written as a console mode application (rather than
  26.   a GUI application) that uses standard input and standard output.
  27.   This was done in order to simplify the source code. You may change it
  28.   into a GUI application by removing all calls to printf() and scanf()
  29.   functions, and calling MessageBox() instead.
  30.  
  31.