├── .gitignore ├── README.md ├── WireTap.sln └── WireTap ├── Audio └── Audio.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Helpers.cs ├── Keyboard └── Keyboard.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── Video ├── Display.cs └── WebCam.cs ├── WireTap.csproj ├── app.config ├── packages.config └── wiretap.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/README.md -------------------------------------------------------------------------------- /WireTap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap.sln -------------------------------------------------------------------------------- /WireTap/Audio/Audio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/Audio/Audio.cs -------------------------------------------------------------------------------- /WireTap/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/FodyWeavers.xml -------------------------------------------------------------------------------- /WireTap/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/FodyWeavers.xsd -------------------------------------------------------------------------------- /WireTap/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/Helpers.cs -------------------------------------------------------------------------------- /WireTap/Keyboard/Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/Keyboard/Keyboard.cs -------------------------------------------------------------------------------- /WireTap/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/Program.cs -------------------------------------------------------------------------------- /WireTap/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WireTap/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WireTap/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/Properties/Resources.resx -------------------------------------------------------------------------------- /WireTap/Video/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/Video/Display.cs -------------------------------------------------------------------------------- /WireTap/Video/WebCam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/Video/WebCam.cs -------------------------------------------------------------------------------- /WireTap/WireTap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/WireTap.csproj -------------------------------------------------------------------------------- /WireTap/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/app.config -------------------------------------------------------------------------------- /WireTap/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/packages.config -------------------------------------------------------------------------------- /WireTap/wiretap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/WireTap/HEAD/WireTap/wiretap.ico --------------------------------------------------------------------------------