gitextract_uomszmgh/ ├── .gitignore ├── LICENSE ├── README.md ├── Samples/ │ ├── DumpPhys/ │ │ ├── DumpPhys/ │ │ │ ├── DumpPhys.csproj │ │ │ ├── DumpPhys.manifest │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ └── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── DumpPhys.sln │ │ └── DumpPhys.suo │ └── DumpPort/ │ ├── DumpPort/ │ │ ├── DumpPort.csproj │ │ ├── DumpPort.manifest │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── DumpPort.sln │ └── DumpPort.suo └── Source/ ├── Dll/ │ ├── InstDrv.cpp │ ├── Phys32.cpp │ ├── Phys32.h │ ├── Port32.cpp │ ├── Port32.h │ ├── WinIo.aps │ ├── WinIo.cpp │ ├── WinIo.def │ ├── WinIo.rc │ ├── WinIo.sln │ ├── WinIo.suo │ ├── WinIo.vcproj │ ├── resource.h │ └── winio.h └── Drv/ ├── MAKEFILE ├── SOURCES ├── WinIo.c └── winio_nt.h