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

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