├── .gitignore ├── LICENSE ├── Launcher.sln ├── Launcher ├── Launcher.cpp ├── Launcher.vcxproj └── Launcher.vcxproj.filters ├── ManagedBridge ├── ManagedBridge.vcxproj ├── ManagedBridge.vcxproj.filters └── dllmain.cpp └── ManagedProgram ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── ManagedProgram.csproj ├── Program.cs └── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/LICENSE -------------------------------------------------------------------------------- /Launcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/Launcher.sln -------------------------------------------------------------------------------- /Launcher/Launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/Launcher/Launcher.cpp -------------------------------------------------------------------------------- /Launcher/Launcher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/Launcher/Launcher.vcxproj -------------------------------------------------------------------------------- /Launcher/Launcher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/Launcher/Launcher.vcxproj.filters -------------------------------------------------------------------------------- /ManagedBridge/ManagedBridge.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedBridge/ManagedBridge.vcxproj -------------------------------------------------------------------------------- /ManagedBridge/ManagedBridge.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedBridge/ManagedBridge.vcxproj.filters -------------------------------------------------------------------------------- /ManagedBridge/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedBridge/dllmain.cpp -------------------------------------------------------------------------------- /ManagedProgram/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedProgram/App.config -------------------------------------------------------------------------------- /ManagedProgram/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedProgram/Form1.Designer.cs -------------------------------------------------------------------------------- /ManagedProgram/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedProgram/Form1.cs -------------------------------------------------------------------------------- /ManagedProgram/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedProgram/Form1.resx -------------------------------------------------------------------------------- /ManagedProgram/ManagedProgram.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedProgram/ManagedProgram.csproj -------------------------------------------------------------------------------- /ManagedProgram/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedProgram/Program.cs -------------------------------------------------------------------------------- /ManagedProgram/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedProgram/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ManagedProgram/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedProgram/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ManagedProgram/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedProgram/Properties/Resources.resx -------------------------------------------------------------------------------- /ManagedProgram/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedProgram/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ManagedProgram/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/LauncherBridge/HEAD/ManagedProgram/Properties/Settings.settings --------------------------------------------------------------------------------