home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / windr440.zip / windrive.zip / WinDriver / samples / isapnp_scan / isapnp_scan.c < prev   
C/C++ Source or Header  |  2000-03-30  |  544b  |  20 lines

  1. ////////////////////////////////////////////////////////////////
  2. // File - ISAPNP_SCAN.C
  3. //
  4. // A utility for getting a list of the ISA PnP cards installed 
  5. // and the resources allocated for each one of them (memory 
  6. // ranges, IO ranges and interrupts).
  7. // 
  8. ////////////////////////////////////////////////////////////////
  9.  
  10. #include "../../include/windrvr.h"
  11. #include "../shared/print_struct.h"
  12. #include "../shared/isapnp_diag_lib.h"
  13.  
  14. int main (int argc, char *argv[]) 
  15. {
  16.     ISAPNP_Print_all_cards_info();
  17.  
  18.     return 0;
  19. }
  20.