├── .gitignore ├── FlexASIOGUI.csproj ├── FlexASIOGUI.csproj.user ├── FlexASIOGUI.sln ├── FlexGUIConfig.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── LICENSE ├── Program.cs ├── README.md ├── installer ├── FlexASIOGUI.iss └── flexasiogui.ico └── lib ├── Debug ├── portaudio-sharp.dll └── portaudio-sharp.pdb ├── Release ├── portaudio-sharp.dll └── portaudio-sharp.pdb ├── portaudio_x64.dll └── portaudio_x64.pdb /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | obj 3 | bin 4 | installer/Output 5 | -------------------------------------------------------------------------------- /FlexASIOGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/FlexASIOGUI.csproj -------------------------------------------------------------------------------- /FlexASIOGUI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/FlexASIOGUI.csproj.user -------------------------------------------------------------------------------- /FlexASIOGUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/FlexASIOGUI.sln -------------------------------------------------------------------------------- /FlexGUIConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/FlexGUIConfig.cs -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/Form1.cs -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/Form1.resx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/README.md -------------------------------------------------------------------------------- /installer/FlexASIOGUI.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/installer/FlexASIOGUI.iss -------------------------------------------------------------------------------- /installer/flexasiogui.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/installer/flexasiogui.ico -------------------------------------------------------------------------------- /lib/Debug/portaudio-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/lib/Debug/portaudio-sharp.dll -------------------------------------------------------------------------------- /lib/Debug/portaudio-sharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/lib/Debug/portaudio-sharp.pdb -------------------------------------------------------------------------------- /lib/Release/portaudio-sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/lib/Release/portaudio-sharp.dll -------------------------------------------------------------------------------- /lib/Release/portaudio-sharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/lib/Release/portaudio-sharp.pdb -------------------------------------------------------------------------------- /lib/portaudio_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/lib/portaudio_x64.dll -------------------------------------------------------------------------------- /lib/portaudio_x64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipswitchingmonkey/FlexASIO_GUI/HEAD/lib/portaudio_x64.pdb --------------------------------------------------------------------------------