├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SiriRemoteDriver.sln ├── SiriRemoteLowerFilterDriver.PNG ├── exe ├── ConsoleApp │ ├── App.config │ ├── ConsoleApp.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── dlls │ │ ├── System.Runtime.WindowsRuntime.dll │ │ ├── System.Runtime.WindowsRuntime.xml │ │ └── Windows.winmd └── SendIoctlToFilter │ ├── SendIoctlToFilter.cpp │ ├── SendIoctlToFilter.vcxproj │ └── SendIoctlToFilter.vcxproj.filters └── kmdf └── filter ├── filter.inx └── generic ├── filter.c ├── filter.h ├── filter.rc ├── filter.vcxproj └── filter.vcxproj.Filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/README.md -------------------------------------------------------------------------------- /SiriRemoteDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/SiriRemoteDriver.sln -------------------------------------------------------------------------------- /SiriRemoteLowerFilterDriver.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/SiriRemoteLowerFilterDriver.PNG -------------------------------------------------------------------------------- /exe/ConsoleApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/exe/ConsoleApp/App.config -------------------------------------------------------------------------------- /exe/ConsoleApp/ConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/exe/ConsoleApp/ConsoleApp.csproj -------------------------------------------------------------------------------- /exe/ConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/exe/ConsoleApp/Program.cs -------------------------------------------------------------------------------- /exe/ConsoleApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/exe/ConsoleApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /exe/ConsoleApp/dlls/System.Runtime.WindowsRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/exe/ConsoleApp/dlls/System.Runtime.WindowsRuntime.dll -------------------------------------------------------------------------------- /exe/ConsoleApp/dlls/System.Runtime.WindowsRuntime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/exe/ConsoleApp/dlls/System.Runtime.WindowsRuntime.xml -------------------------------------------------------------------------------- /exe/ConsoleApp/dlls/Windows.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/exe/ConsoleApp/dlls/Windows.winmd -------------------------------------------------------------------------------- /exe/SendIoctlToFilter/SendIoctlToFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/exe/SendIoctlToFilter/SendIoctlToFilter.cpp -------------------------------------------------------------------------------- /exe/SendIoctlToFilter/SendIoctlToFilter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/exe/SendIoctlToFilter/SendIoctlToFilter.vcxproj -------------------------------------------------------------------------------- /exe/SendIoctlToFilter/SendIoctlToFilter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/exe/SendIoctlToFilter/SendIoctlToFilter.vcxproj.filters -------------------------------------------------------------------------------- /kmdf/filter/filter.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/kmdf/filter/filter.inx -------------------------------------------------------------------------------- /kmdf/filter/generic/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/kmdf/filter/generic/filter.c -------------------------------------------------------------------------------- /kmdf/filter/generic/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/kmdf/filter/generic/filter.h -------------------------------------------------------------------------------- /kmdf/filter/generic/filter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/kmdf/filter/generic/filter.rc -------------------------------------------------------------------------------- /kmdf/filter/generic/filter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/kmdf/filter/generic/filter.vcxproj -------------------------------------------------------------------------------- /kmdf/filter/generic/filter.vcxproj.Filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-R1/SiriRemoteDriver/HEAD/kmdf/filter/generic/filter.vcxproj.Filters --------------------------------------------------------------------------------