├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── README.ru.md ├── discord-voice-proxy.sln ├── installer ├── Discord.cs ├── DiscordProxyInstaller.csproj └── Program.cs └── proxy-dll ├── discord-voice-proxy.vcxproj ├── dllmain.cpp ├── proxy.asm ├── proxy.h ├── vcpkg-configuration.json └── vcpkg.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.cs linguist-detectable=false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/README.md -------------------------------------------------------------------------------- /README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/README.ru.md -------------------------------------------------------------------------------- /discord-voice-proxy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/discord-voice-proxy.sln -------------------------------------------------------------------------------- /installer/Discord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/installer/Discord.cs -------------------------------------------------------------------------------- /installer/DiscordProxyInstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/installer/DiscordProxyInstaller.csproj -------------------------------------------------------------------------------- /installer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/installer/Program.cs -------------------------------------------------------------------------------- /proxy-dll/discord-voice-proxy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/proxy-dll/discord-voice-proxy.vcxproj -------------------------------------------------------------------------------- /proxy-dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/proxy-dll/dllmain.cpp -------------------------------------------------------------------------------- /proxy-dll/proxy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/proxy-dll/proxy.asm -------------------------------------------------------------------------------- /proxy-dll/proxy.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern "C" uintptr_t OrignalDWriteCreateFactory; -------------------------------------------------------------------------------- /proxy-dll/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/proxy-dll/vcpkg-configuration.json -------------------------------------------------------------------------------- /proxy-dll/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runetfreedom/discord-voice-proxy/HEAD/proxy-dll/vcpkg.json --------------------------------------------------------------------------------