The DriverWizard has created:
* A sample diagnostics application for testing the communication with
  your hardware from the user mode.
* Library files, which include API for controlling your hardware.

  C:/WinDriver/wizard/my_projects/de5_router_pcie_files.txt
         A detailed overview of all the generated files.

  C:/WinDriver/wizard/my_projects/de5_router_pcie_lib.h
         A library for controlling your hardware through WinDriver.

  C:/WinDriver/wizard/my_projects/de5_router_pcie_lib.c
         Contains the implementation of the functions used for
         accessing each of the resources defined in the Wizard.

  C:/WinDriver/wizard/my_projects/de5_router_pcie_diag.c
         The sample user-mode application that diagnoses your
         hardware using the de5_router_pcie_lib.h library.

  C:/WinDriver/wizard/my_projects/de5_router_pcie.inf
         A formatted reference file for Windows that contains
         information about installation files and devices, such as
         filenames, version information and so on.

Compiling this project:
  - Create a new project. Choose console mode project.
  - Include the following files in the project:
      de5_router_pcie_lib.c
      de5_router_pcie_diag.c
      samples\shared\pci_diag_lib.c
      samples\shared\print_struct.c

Converting to a GUI application:
  This sample was written as a console mode application (rather than
  a GUI application) that uses standard input and standard output.
  This was done in order to simplify the source code. You may change it
  into a GUI application by removing all calls to printf() and scanf()
  functions, and calling MessageBox() instead.

