home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / windr440.zip / windrive.zip / WinDriver / plx / 9054 / files.txt
File List  |  2000-03-30  |  3KB  |  66 lines

  1. 9054 directory contents:
  2.  
  3. LIB\P9054_LIB.C - Implementation of P9054_LIB.H.
  4.  
  5. LIB\P9054_LIB.H - Library for 'WinDriver for PLX 9054' API. 
  6.     The basic idea is to get a handle for the board
  7.     with P9054_Open() and use it in the rest of the program
  8.     when calling P9054_xxxx() functions.  Call P9054_Close() when done.
  9.  
  10. P9054_DIAG\P9054_DIAG.C - A simple diagnostics program that lets you access the
  11.     PLX 9054 registers and local memory. 
  12.     o This program is meant to be used as an example for using the P9054_LIB.H API,
  13.       you may use it as a skeleton for your driver, or 'cut & paste' parts
  14.       of it into your device driver code.
  15.     o For a more advanced monitor program, use the standard PLXMON.EXE
  16.       from PLX.
  17.  
  18.       The source code for this project was generated by WinDriver Wizard.
  19.  
  20. Files:
  21.   lib directory:
  22.   lib\p9054_lib.c
  23.       Library for 'WinDriver for PLX 9054' API. 
  24.       The basic idea is to get a handle for the board
  25.       with P9054_Open() and use it in the rest of the program
  26.       when calling P9054_xxxx() functions.  Call P9054_Close() when done.
  27.   lib\p9054_lib.h
  28.       Header file of p9054_lib.c library.
  29.  
  30.   p9054_diag directory:
  31.   p9054_diag\p9054_diag.c
  32.       A simple diagnostics program that lets you access the
  33.       PLX 9054 registers and local memory. 
  34.       o This program is meant to be used as an example for using the 
  35.         p9054_lib.h API.
  36.         You may use it as a skeleton for your driver, or 'cut & paste' 
  37.         parts of it into your device driver code.
  38.       o For a more advanced monitor program, use the standard PLXMON.EXE
  39.         from PLX.
  40.   p9054_diag\p9054_diag.mak
  41.       MS-Visual C++ 4.0 (and above) compatible make file.
  42.   p9054_diag\p9054_diag.mdp
  43.       MS-Visual C++ 4.0 (and above) compatible project file.
  44.   files.txt
  45.       Describes the files generated.
  46.  
  47. Compiling this project:
  48.   If you are using MS-Visual C++, then open the p9054_diag.mdp project file, and
  49.   compile.
  50.  
  51.   If using a different compiler:
  52.   - Create a new project. Choose console mode project.
  53.   - Include the following files in the project:
  54.       lib\p9054_lib.c
  55.       p9054_diag\p9054_diag.c
  56.       \windrvr\samples\shared\pci_diag_lib.c
  57.       \windrvr\samples\shared\print_struct.c
  58.  
  59. Converting to a GUI application:
  60.   This sample was written as a console mode application (rather than
  61.   a GUI application) that uses standard input and standard output.
  62.   This was done in order to simplify the source code. You may change it
  63.   into a GUI application by removing all calls to printf() and scanf()
  64.   functions, and calling MessageBox() instead.
  65.  
  66.