├── .gitignore ├── LICENSE.md ├── README.md ├── appveyor.yml ├── ccfltr-console.sln ├── ccfltr-console ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── ccfltr-console.csproj ├── ccfltr.sln └── ccfltr ├── ccfltr.c ├── ccfltr.h ├── ccfltr.inf ├── ccfltr.rc ├── ccfltr.vcxproj ├── ccfltr.vcxproj.filters ├── ctrldispatch.c ├── helperfns.c └── resource.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/appveyor.yml -------------------------------------------------------------------------------- /ccfltr-console.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr-console.sln -------------------------------------------------------------------------------- /ccfltr-console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr-console/App.config -------------------------------------------------------------------------------- /ccfltr-console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr-console/Program.cs -------------------------------------------------------------------------------- /ccfltr-console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr-console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ccfltr-console/ccfltr-console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr-console/ccfltr-console.csproj -------------------------------------------------------------------------------- /ccfltr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr.sln -------------------------------------------------------------------------------- /ccfltr/ccfltr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr/ccfltr.c -------------------------------------------------------------------------------- /ccfltr/ccfltr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr/ccfltr.h -------------------------------------------------------------------------------- /ccfltr/ccfltr.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr/ccfltr.inf -------------------------------------------------------------------------------- /ccfltr/ccfltr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr/ccfltr.rc -------------------------------------------------------------------------------- /ccfltr/ccfltr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr/ccfltr.vcxproj -------------------------------------------------------------------------------- /ccfltr/ccfltr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr/ccfltr.vcxproj.filters -------------------------------------------------------------------------------- /ccfltr/ctrldispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr/ctrldispatch.c -------------------------------------------------------------------------------- /ccfltr/helperfns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr/helperfns.c -------------------------------------------------------------------------------- /ccfltr/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowerinthenight/windows-camera-class-filter-driver/HEAD/ccfltr/resource.h --------------------------------------------------------------------------------