gitextract_gda5v0rh/ ├── .gitignore ├── Driver/ │ └── avshws/ │ ├── README.md │ ├── avshws.h │ ├── avshws.inf │ ├── avshws.rc │ ├── avshws.sln │ ├── avshws.vcxproj │ ├── avshws.vcxproj.Filters │ ├── capture.cpp │ ├── capture.h │ ├── customprops.h │ ├── device.cpp │ ├── device.h │ ├── filter.cpp │ ├── filter.h │ ├── hwsim.cpp │ ├── hwsim.h │ ├── image.cpp │ ├── image.h │ └── purecall.c ├── LICENSE ├── README.md └── UserLand/ ├── .gitignore ├── DriverInterface/ │ ├── Common.h │ ├── Device.cpp │ ├── Device.h │ ├── DeviceEnumeration.cpp │ ├── DeviceEnumeration.h │ ├── DriverInterface.cpp │ ├── DriverInterface.vcxproj │ ├── DriverInterface.vcxproj.filters │ └── dllmain.cpp ├── DriverInterfaceWrapper/ │ ├── DeviceInfo.cs │ ├── DriverInterface.cs │ ├── DriverInterfaceWrapper.csproj │ ├── Native.cs │ └── Properties/ │ └── AssemblyInfo.cs ├── UserDriverCanon/ │ ├── App.config │ ├── CameraListItem.cs │ ├── FitPictureBox.cs │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── UserDriverCanon.csproj ├── UserDriverStaticImage/ │ ├── App.config │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── UserDriverStaticImage.csproj └── VirtualCameraDriver.sln