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

  1. The source code for this project was generated by WinDriver Wizard.
  2. To compile this application, you will need a Win32 compiler.
  3.  
  4. Files:
  5.   pci_diag.c
  6.       The main file which implements the functions which
  7.       access the resources you have defined in the Wizard.
  8.       This is a diagnostics application which demonstrates 
  9.       usage of the pci_lib.c library.
  10.   pci_lib.c
  11.       A library for accessing your hardware through WinDriver.
  12.   pci_lib.h
  13.       Header file of pci_lib.c library.
  14.   pci_diag.mak
  15.       MS-Visual C++ 4.0 (and above) compatible make file.
  16.   pci_diag.mdp
  17.       MS-Visual C++ 4.0 (and above) compatible project file.
  18.   files.txt
  19.       Describes the files generated.
  20.  
  21. Compiling this project:
  22.   If you are using MS-Visual C++, then open the pci_diag.mdp project file, and
  23.   compile.
  24.  
  25.   If using a different compiler:
  26.   - Create a new project. Choose console mode project.
  27.   - Include the following files in the project:
  28.       pci_lib.c
  29.       pci_diag.c
  30.       \windrvr\samples\shared\pci_diag_lib.c
  31.       \windrvr\samples\shared\print_struct.c
  32.  
  33. Converting to a GUI application:
  34.   This sample was written as a console mode application (rather than
  35.   a GUI application) that uses standard input and standard output.
  36.   This was done in order to simplify the source code. You may change it
  37.   into a GUI application by removing all calls to printf() and scanf()
  38.   functions, and calling MessageBox() instead.
  39.  
  40.