├── .gitattributes ├── .gitignore ├── Clean.cmd ├── Common └── Resources │ └── Scp.ico ├── Installer ├── DualShock.png ├── GPLv3.rtf └── ScpToolkit Setup.aip ├── LICENSE.md ├── Lilypad ├── Config.cpp ├── DualShock3.cpp └── LilyPad.rc ├── README.md ├── SCPUser.exe ├── ScpCleanWipe ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scp.ico ├── ScpCleanWipe.csproj ├── Themes │ └── MetroDark │ │ ├── HowToApplyTheme.txt │ │ ├── MetroDark.MSControls.Core.Implicit.xaml │ │ ├── MetroDark.MSControls.Toolkit.Implicit.xaml │ │ ├── Styles.Shared.xaml │ │ ├── Styles.WPF.xaml │ │ └── Theme.Colors.xaml ├── Utilities │ └── NotifyAppender.cs ├── app.manifest ├── hazard.ico └── packages.config ├── ScpControl.Shared ├── Core │ ├── DualShockAxes.cs │ ├── DualShockButtons.cs │ ├── DualShockEnums.cs │ ├── DualShockMotion.cs │ ├── DualShockPadMeta.cs │ ├── DualShockProfile.cs │ ├── DualShockTrackPad.cs │ └── ScpHidReport.cs ├── FodyWeavers.xml ├── Properties │ ├── AssemblyInfo.cs │ └── CommonInfo.cs ├── ScpControl.Shared.csproj ├── Utilities │ ├── AccurateTime.cs │ ├── Crc32.cs │ └── DsMath.cs ├── Win32 │ └── Kernel32Natives.cs ├── XInput │ ├── ScpXInputExtensions.cs │ └── XInputConstants.cs └── packages.config ├── ScpControl ├── Bluetooth │ ├── BthConnection.cs │ ├── BthDevice.cs │ ├── BthDongle.Hci.cs │ ├── BthDongle.L2cap.cs │ ├── BthDongle.Tasks.cs │ ├── BthDongle.cs │ ├── BthHandle.cs │ ├── BthHub.Designer.cs │ ├── BthHub.cs │ ├── Ds3 │ │ └── BthDs3.cs │ ├── Ds4 │ │ └── BthDs4.cs │ ├── HCI.cs │ └── L2CAP.cs ├── BusDevice.cs ├── DIFxAPI │ ├── amd64 │ │ └── DIFxAPI.dll │ └── x86 │ │ └── DIFxAPI.dll ├── Database │ ├── DBreezeEngineExtensions.cs │ └── ScpDb.cs ├── Driver │ ├── Devcon.cs │ ├── Difx.cs │ ├── DriverInstaller.cs │ ├── NativeLibraryWrapper.cs │ ├── PNPUtilLib │ │ ├── DriverStoreEntry.cs │ │ ├── IDriverStore.cs │ │ └── PNPUtil.cs │ ├── WdiWrapper.cs │ ├── WinUsbWrapper.cs │ └── XOutputWrapper.cs ├── Exceptions │ └── RootHubAlreadyStartedException.cs ├── FodyWeavers.xml ├── Libarius.XML ├── LilyPad │ └── LilyPad-Scp-r5875.dll ├── Media │ ├── connect.wav │ ├── disconnect.flac │ └── startup.ogg ├── Profiler │ ├── DualShockProfileManager.cs │ └── VirtualMouse.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Settings.Designer.cs │ ├── Settings.cs │ └── Settings.settings ├── RootHub.Designer.cs ├── RootHub.cs ├── RootHub.resx ├── Rx │ ├── IChannel.cs │ ├── ScpNativeFeedChannel.cs │ └── ScpUdpServer.cs ├── ScpControl.csproj ├── ScpControl.ini ├── ScpControl_2010.csproj ├── ScpCore │ ├── GlobalConfiguration.cs │ └── SingletonBase.cs ├── ScpDevice.Interop.cs ├── ScpDevice.cs ├── ScpHub.Designer.cs ├── ScpHub.cs ├── ScpProxy.Designer.cs ├── ScpProxy.cs ├── ScpProxy.resx ├── ScpTimer.Designer.cs ├── ScpTimer.cs ├── ScpUtil.cs ├── ScpVBus │ ├── amd64 │ │ ├── ScpVBus.inf │ │ ├── ScpVBus.sys │ │ ├── WdfCoinstaller01009.dll │ │ └── scpvbus.cat │ └── x86 │ │ ├── ScpVBus.inf │ │ ├── ScpVBus.sys │ │ ├── WdfCoinstaller01009.dll │ │ └── scpvbus.cat ├── Sound │ └── AudioPlayer.cs ├── Usb │ ├── Ds3 │ │ ├── DS3Cal.cs │ │ ├── Replica │ │ │ ├── UsbDs3Afterglow.cs │ │ │ └── UsbDs3QuadStick.cs │ │ └── UsbDs3.cs │ ├── Ds4 │ │ ├── DS4Cal.cs │ │ └── UsbDs4.cs │ ├── Gamepads │ │ ├── UsbBadBigBenGamepad.cs │ │ ├── UsbBlankGamepad.cs │ │ ├── UsbGameStopDigitalController.cs │ │ ├── UsbGameStopPcAdvanced.cs │ │ ├── UsbGenericGamepad.cs │ │ ├── UsbLsiLogicGamepad.cs │ │ ├── UsbMadcatzTournamentEdition2Fightstick.cs │ │ ├── UsbShanWanWirelessGamepad.cs │ │ ├── UsbSnesGamepad.cs │ │ └── UsbTwinUSBJoystick.cs │ ├── PnP │ │ ├── UsbNotifier.cs │ │ └── Win32Usb.cs │ ├── UsbDevice.cs │ ├── UsbHub.3rdPartyFixes.cs │ ├── UsbHub.Designer.cs │ ├── UsbHub.cs │ └── UsbSpecification.cs ├── UsbDs3AfterglowAp2.cs ├── Utilities │ ├── AssemblyHelper.cs │ ├── ByteArrayExtensions.cs │ ├── ConcurrentDictionaryExtensions.cs │ ├── ControlExtensions.cs │ ├── DumpHelper.cs │ ├── EnumExtensions.cs │ ├── FileDownloader.cs │ ├── FileExtensions.cs │ ├── GenericGamepadConfig.cs │ ├── ILogExtensions.cs │ ├── IniConfig.cs │ ├── MacAddressGenerator.cs │ ├── OSVersionInfoClass.cs │ ├── OsInfoHelper.cs │ ├── PhysicalAddressExtensions.cs │ ├── PortableSettingsProvider.cs │ ├── ProcessHelper.cs │ ├── StringExtensions.cs │ ├── TaskQueue.cs │ └── ThemeUtil.cs ├── Value Converters │ ├── EnumDescriptionConverter.cs │ ├── MultiCheckedToEnabledConverter.cs │ └── RadioBoolToIntConverter.cs ├── Wcf │ └── IScpCommandService.cs ├── WinUSB │ ├── BluetoothHost.inf │ ├── Ds3Controller.inf │ ├── Ds4Controller.inf │ ├── amd64 │ │ ├── WdfCoInstaller01011.dll │ │ └── winusbcoinstaller2.dll │ ├── bluetoothhost.cat │ ├── ds3controller.cat │ ├── ds4controller.cat │ └── x86 │ │ ├── WdfCoInstaller01011.dll │ │ └── winusbcoinstaller2.dll ├── XOutput │ ├── amd64 │ │ └── XOutput1_1.dll │ └── x86 │ │ └── XOutput1_1.dll ├── app.config ├── ds3cal │ ├── x64 │ │ └── ds3cal.dll │ └── x86 │ │ └── ds3cal.dll ├── irrKlang │ ├── amd64 │ │ ├── ikpFlac.dll │ │ ├── ikpMP3.dll │ │ └── irrKlang.NET4.dll │ └── x86 │ │ ├── ikpFlac.dll │ │ ├── ikpMP3.dll │ │ └── irrKlang.NET4.dll ├── libwdi │ ├── amd64 │ │ ├── libwdi.dll │ │ └── wdi-simple.exe │ └── x86 │ │ ├── libwdi.dll │ │ └── wdi-simple.exe ├── packages.config └── updater.ico ├── ScpControlPanel ├── App.config ├── App.xaml ├── App.xaml.cs ├── Controls │ ├── PadEntryCollectionControl.xaml │ ├── PadEntryCollectionControl.xaml.cs │ ├── PadEntryControl.xaml │ └── PadEntryControl.xaml.cs ├── Dual Shock 3.ico ├── FodyWeavers.xml ├── Icons │ └── arrow-up.ico ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ScpControlPanel.csproj ├── Themes │ └── MetroDark │ │ ├── HowToApplyTheme.txt │ │ ├── MetroDark.MSControls.Core.Implicit.xaml │ │ ├── MetroDark.MSControls.Toolkit.Implicit.xaml │ │ ├── Styles.Shared.xaml │ │ ├── Styles.WPF.xaml │ │ └── Theme.Colors.xaml ├── View Models │ └── PadStatsViewModel.cs ├── app.manifest └── packages.config ├── ScpDebugInfoCollector ├── App.config ├── Bug.ico ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── CommonInfo.cs ├── ScpDebugInfoCollector.csproj ├── app.manifest └── packages.config ├── ScpDriverInstaller ├── App.config ├── App.xaml ├── App.xaml.cs ├── FodyWeavers.xml ├── Images │ ├── Warning.fr.png │ └── Warning.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.fr.resx │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scp.ico ├── ScpDriverInstaller.csproj ├── Themes │ ├── Metro │ │ ├── HowToApplyTheme.txt │ │ ├── Metro.MSControls.Core.Implicit.xaml │ │ ├── Metro.MSControls.Toolkit.Implicit.xaml │ │ ├── Styles.Shared.xaml │ │ ├── Styles.WPF.xaml │ │ └── Theme.Colors.xaml │ └── MetroDark │ │ ├── HowToApplyTheme.txt │ │ ├── MetroDark.MSControls.Core.Implicit.xaml │ │ ├── MetroDark.MSControls.Toolkit.Implicit.xaml │ │ ├── Styles.Shared.xaml │ │ ├── Styles.WPF.xaml │ │ └── Theme.Colors.xaml ├── Usb.ico ├── Utilities │ ├── BitmapToImageSourceConverter.cs │ ├── ExtendedMessageBox.cs │ ├── NotifyAppender.cs │ ├── RedistPackageInstaller.cs │ ├── UiContext.cs │ └── WPFThreadingExtensions.cs ├── View Models │ └── InstallationOptionsViewModel.cs ├── app.manifest └── packages.config ├── ScpGamepadAnalyzer ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scp.ico ├── ScpGamepadAnalyzer.csproj ├── Themes │ └── MetroDark │ │ ├── HowToApplyTheme.txt │ │ ├── MetroDark.MSControls.Core.Implicit.xaml │ │ ├── MetroDark.MSControls.Toolkit.Implicit.xaml │ │ ├── Styles.Shared.xaml │ │ ├── Styles.WPF.xaml │ │ └── Theme.Colors.xaml ├── app.manifest ├── gamepad.ico └── packages.config ├── ScpInstaller ├── App.config ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── ScpInstaller.manifest │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── Scp_All.ico ├── ScpDriver.cs ├── ScpDriver.xml ├── ScpForm.Designer.cs ├── ScpForm.cs ├── ScpForm.resx ├── ScpInstaller.csproj ├── ScpInstaller_2010.csproj ├── Utilities │ └── TextBoxAppender.cs └── packages.config ├── ScpLauncher ├── App.config ├── App.xaml ├── App.xaml.cs ├── Icons │ ├── browser-web-content.ico │ ├── calendar-date-month-planner.ico │ ├── checked-www-domain-window.ico │ ├── computer-devices-responsive.ico │ ├── database-gear.ico │ ├── developer-api-coding-screen.ico │ ├── document.ico │ ├── gamepad-gear.ico │ ├── internet-network.ico │ ├── internet-page-content.ico │ ├── network-server.ico │ ├── responsive-layout-screen.ico │ ├── window-tools.ico │ └── www-world-globe.ico ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scp.ico ├── ScpLauncher.csproj ├── Themes │ ├── Metro │ │ ├── HowToApplyTheme.txt │ │ ├── Metro.MSControls.Core.Implicit.xaml │ │ ├── Metro.MSControls.Toolkit.Implicit.xaml │ │ ├── Styles.Shared.xaml │ │ ├── Styles.WPF.xaml │ │ └── Theme.Colors.xaml │ └── MetroDark │ │ ├── HowToApplyTheme.txt │ │ ├── MetroDark.MSControls.Core.Implicit.xaml │ │ ├── MetroDark.MSControls.Toolkit.Implicit.xaml │ │ ├── Styles.Shared.xaml │ │ ├── Styles.WPF.xaml │ │ └── Theme.Colors.xaml └── packages.config ├── ScpMonitor ├── AxisBar.Designer.cs ├── AxisBar.cs ├── AxisBar.resx ├── AxisControl.Designer.cs ├── AxisControl.cs ├── AxisControl.resx ├── CrossThreadHelper.cs ├── ProfilesForm.Designer.cs ├── ProfilesForm.cs ├── ProfilesForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RegistryProvider.cs ├── Resources │ └── Scp_All.ico ├── ScpButton.Designer.cs ├── ScpButton.cs ├── ScpForm.Designer.cs ├── ScpForm.cs ├── ScpForm.resx ├── ScpMonitor.csproj ├── ScpMonitor_2010.csproj ├── app.config └── packages.config ├── ScpPair ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── Scp_All.ico ├── ScpForm.Designer.cs ├── ScpForm.cs ├── ScpForm.resx ├── ScpPair.csproj ├── ScpPair_2010.csproj ├── app.config └── packages.config ├── ScpProfiler ├── App.config ├── App.xaml ├── App.xaml.cs ├── AxisMappingEntryControl.xaml ├── AxisMappingEntryControl.xaml.cs ├── ButtonMappingEntryControl.xaml ├── ButtonMappingEntryControl.xaml.cs ├── ButtonMappingViewModel.cs ├── DpadAxisControl.xaml ├── DpadAxisControl.xaml.cs ├── DualShockProfileViewModel.cs ├── FodyWeavers.xml ├── Icons │ ├── 32px-Settings.png │ ├── 32px-Settings2.png │ ├── 48px-PS3_Circle.png │ ├── 48px-PS3_Cross.png │ ├── 48px-PS3_Dpad.png │ ├── 48px-PS3_L1.png │ ├── 48px-PS3_L2.png │ ├── 48px-PS3_L3.png │ ├── 48px-PS3_Left_Stick.png │ ├── 48px-PS3_PSHome.png │ ├── 48px-PS3_R1.png │ ├── 48px-PS3_R2.png │ ├── 48px-PS3_R3.png │ ├── 48px-PS3_Right_Stick.png │ ├── 48px-PS3_Select.png │ ├── 48px-PS3_Sqaure.png │ ├── 48px-PS3_Start.png │ ├── 48px-PS3_Triangle.png │ ├── 48px-Settings.png │ └── Ds4 │ │ ├── a_butt.png │ │ ├── b_butt.png │ │ ├── back_butt.png │ │ ├── dpad_all.png │ │ ├── dpad_down.png │ │ ├── dpad_left.png │ │ ├── dpad_leftright.png │ │ ├── dpad_none.png │ │ ├── dpad_right.png │ │ ├── dpad_up.png │ │ ├── dpad_updown.png │ │ ├── lb_butt.png │ │ ├── lstick_all.png │ │ ├── lstick_down.png │ │ ├── lstick_left.png │ │ ├── lstick_leftright.png │ │ ├── lstick_none.png │ │ ├── lstick_right.png │ │ ├── lstick_up.png │ │ ├── lstick_updown.png │ │ ├── lt_butt.png │ │ ├── rb_butt.png │ │ ├── rstick_all.png │ │ ├── rstick_down.png │ │ ├── rstick_left.png │ │ ├── rstick_leftright.png │ │ ├── rstick_none.png │ │ ├── rstick_right.png │ │ ├── rstick_up.png │ │ ├── rstick_updown.png │ │ ├── rt_butt.png │ │ ├── start_butt.png │ │ ├── x_butt.png │ │ └── y_butt.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scp.ico ├── ScpProfiler.csproj ├── Themes │ └── MetroDark │ │ ├── HowToApplyTheme.txt │ │ ├── MetroDark.MSControls.Core.Implicit.xaml │ │ ├── MetroDark.MSControls.Toolkit.Implicit.xaml │ │ ├── Styles.Shared.xaml │ │ ├── Styles.WPF.xaml │ │ └── Theme.Colors.xaml ├── ThumbStickAxisControl.xaml ├── ThumbStickAxisControl.xaml.cs ├── packages.config ├── redirect.ico └── xbox.ico ├── ScpServer.sln ├── ScpServer ├── App.config ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── Scp_All.ico ├── ScpForm.Designer.cs ├── ScpForm.cs ├── ScpForm.resx ├── ScpServer.csproj ├── ScpServer_2010.csproj ├── Utilities │ └── ListViewAppender.cs ├── app.manifest └── packages.config ├── ScpService ├── App.config ├── Ds3Service.Designer.cs ├── Ds3Service.cs ├── Ds3Service.resx ├── Program.cs ├── ProjectInstaller.Designer.cs ├── ProjectInstaller.cs ├── ProjectInstaller.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── Scp_All.ico ├── ScpService.csproj ├── ScpService_2010.csproj ├── app.manifest └── packages.config ├── ScpSettings ├── App.config ├── App.xaml ├── App.xaml.cs ├── Controls │ ├── DirectoryBrowserControl.xaml │ ├── DirectoryBrowserControl.xaml.cs │ ├── FileBrowserControl.xaml │ └── FileBrowserControl.xaml.cs ├── FodyWeavers.xml ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scp.ico ├── ScpSettings.csproj ├── Themes │ └── MetroDark │ │ ├── HowToApplyTheme.txt │ │ ├── MetroDark.MSControls.Core.Implicit.xaml │ │ ├── MetroDark.MSControls.Toolkit.Implicit.xaml │ │ ├── Styles.Shared.xaml │ │ ├── Styles.WPF.xaml │ │ └── Theme.Colors.xaml ├── packages.config └── settings.ico ├── ScpTrayApp ├── App.config ├── App.xaml ├── App.xaml.cs ├── Dual Shock 3.ico ├── Libarius.XML ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── CommonInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ScpTrayApp.csproj ├── WPFThreadingExtensions.cs └── packages.config ├── ScpUser.sln ├── ScpUser ├── ARPIcon.ico ├── AssemblyInfo.cpp ├── Resources │ ├── Controller.png │ └── Game.ico ├── ScpExtended.cpp ├── ScpExtended.h ├── ScpExtended.resx ├── ScpExtensions.cpp ├── ScpExtensions.h ├── ScpPad.h ├── ScpPad.resX ├── ScpUser.cpp ├── ScpUser.rc ├── ScpUser.vcxproj ├── ScpUser.vcxproj.filters ├── ScpUser_2010.vcxproj ├── ScpUser_2010.vcxproj.filters ├── ScpUser_x64.props ├── ScpUser_x86.props ├── resource.h ├── stdafx.cpp └── stdafx.h ├── ScpXInputBridge ├── FodyWeavers.xml ├── Properties │ ├── AssemblyInfo.cs │ └── CommonInfo.cs ├── ScpXInputBridge.csproj ├── XInputDll.Exports.cs ├── XInputDll.Extensions.cs ├── XInputDll.cs ├── XInput_log4net.config └── packages.config ├── Setup └── ScpToolkitSetup.suf ├── XInput_Scp ├── BTConnection.cpp ├── BTConnection.h ├── DS2Controller.cpp ├── DS2Controller.h ├── DS3Controller.cpp ├── DS3Controller.h ├── LibUsbApi.cpp ├── LibUsbApi.h ├── SCPController.cpp ├── SCPController.h ├── SL3Controller.cpp ├── SL3Controller.h ├── X360Controller.cpp ├── X360Controller.h ├── XInput_SCP.cpp ├── XInput_SCP.def ├── XInput_SCP.h ├── XInput_SCP.rc ├── XInput_SCP.vcxproj ├── XInput_SCP.vcxproj.filters ├── XInput_SCP_2010.vcxproj ├── XInput_SCP_2010.vcxproj.filters ├── XInput_Wrap.cpp ├── XInput_Wrap.h ├── dllmain.cpp ├── hid.h ├── pnp.cpp ├── report.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── packages └── repositories.config └── updates.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /Clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/Clean.cmd -------------------------------------------------------------------------------- /Common/Resources/Scp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/Common/Resources/Scp.ico -------------------------------------------------------------------------------- /Installer/DualShock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/Installer/DualShock.png -------------------------------------------------------------------------------- /Installer/GPLv3.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/Installer/GPLv3.rtf -------------------------------------------------------------------------------- /Installer/ScpToolkit Setup.aip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/Installer/ScpToolkit Setup.aip -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Lilypad/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/Lilypad/Config.cpp -------------------------------------------------------------------------------- /Lilypad/DualShock3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/Lilypad/DualShock3.cpp -------------------------------------------------------------------------------- /Lilypad/LilyPad.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/Lilypad/LilyPad.rc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/README.md -------------------------------------------------------------------------------- /SCPUser.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/SCPUser.exe -------------------------------------------------------------------------------- /ScpCleanWipe/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/App.config -------------------------------------------------------------------------------- /ScpCleanWipe/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/App.xaml -------------------------------------------------------------------------------- /ScpCleanWipe/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/App.xaml.cs -------------------------------------------------------------------------------- /ScpCleanWipe/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/MainWindow.xaml -------------------------------------------------------------------------------- /ScpCleanWipe/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ScpCleanWipe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpCleanWipe/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpCleanWipe/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpCleanWipe/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpCleanWipe/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpCleanWipe/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpCleanWipe/Scp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Scp.ico -------------------------------------------------------------------------------- /ScpCleanWipe/ScpCleanWipe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/ScpCleanWipe.csproj -------------------------------------------------------------------------------- /ScpCleanWipe/Themes/MetroDark/HowToApplyTheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Themes/MetroDark/HowToApplyTheme.txt -------------------------------------------------------------------------------- /ScpCleanWipe/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml -------------------------------------------------------------------------------- /ScpCleanWipe/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml -------------------------------------------------------------------------------- /ScpCleanWipe/Themes/MetroDark/Styles.Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Themes/MetroDark/Styles.Shared.xaml -------------------------------------------------------------------------------- /ScpCleanWipe/Themes/MetroDark/Styles.WPF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Themes/MetroDark/Styles.WPF.xaml -------------------------------------------------------------------------------- /ScpCleanWipe/Themes/MetroDark/Theme.Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Themes/MetroDark/Theme.Colors.xaml -------------------------------------------------------------------------------- /ScpCleanWipe/Utilities/NotifyAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/Utilities/NotifyAppender.cs -------------------------------------------------------------------------------- /ScpCleanWipe/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/app.manifest -------------------------------------------------------------------------------- /ScpCleanWipe/hazard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/hazard.ico -------------------------------------------------------------------------------- /ScpCleanWipe/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpCleanWipe/packages.config -------------------------------------------------------------------------------- /ScpControl.Shared/Core/DualShockAxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Core/DualShockAxes.cs -------------------------------------------------------------------------------- /ScpControl.Shared/Core/DualShockButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Core/DualShockButtons.cs -------------------------------------------------------------------------------- /ScpControl.Shared/Core/DualShockEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Core/DualShockEnums.cs -------------------------------------------------------------------------------- /ScpControl.Shared/Core/DualShockMotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Core/DualShockMotion.cs -------------------------------------------------------------------------------- /ScpControl.Shared/Core/DualShockPadMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Core/DualShockPadMeta.cs -------------------------------------------------------------------------------- /ScpControl.Shared/Core/DualShockProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Core/DualShockProfile.cs -------------------------------------------------------------------------------- /ScpControl.Shared/Core/DualShockTrackPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Core/DualShockTrackPad.cs -------------------------------------------------------------------------------- /ScpControl.Shared/Core/ScpHidReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Core/ScpHidReport.cs -------------------------------------------------------------------------------- /ScpControl.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /ScpControl.Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpControl.Shared/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpControl.Shared/ScpControl.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/ScpControl.Shared.csproj -------------------------------------------------------------------------------- /ScpControl.Shared/Utilities/AccurateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Utilities/AccurateTime.cs -------------------------------------------------------------------------------- /ScpControl.Shared/Utilities/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Utilities/Crc32.cs -------------------------------------------------------------------------------- /ScpControl.Shared/Utilities/DsMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Utilities/DsMath.cs -------------------------------------------------------------------------------- /ScpControl.Shared/Win32/Kernel32Natives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/Win32/Kernel32Natives.cs -------------------------------------------------------------------------------- /ScpControl.Shared/XInput/ScpXInputExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/XInput/ScpXInputExtensions.cs -------------------------------------------------------------------------------- /ScpControl.Shared/XInput/XInputConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/XInput/XInputConstants.cs -------------------------------------------------------------------------------- /ScpControl.Shared/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl.Shared/packages.config -------------------------------------------------------------------------------- /ScpControl/Bluetooth/BthConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/BthConnection.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/BthDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/BthDevice.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/BthDongle.Hci.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/BthDongle.Hci.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/BthDongle.L2cap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/BthDongle.L2cap.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/BthDongle.Tasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/BthDongle.Tasks.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/BthDongle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/BthDongle.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/BthHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/BthHandle.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/BthHub.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/BthHub.Designer.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/BthHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/BthHub.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/Ds3/BthDs3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/Ds3/BthDs3.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/Ds4/BthDs4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/Ds4/BthDs4.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/HCI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/HCI.cs -------------------------------------------------------------------------------- /ScpControl/Bluetooth/L2CAP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Bluetooth/L2CAP.cs -------------------------------------------------------------------------------- /ScpControl/BusDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/BusDevice.cs -------------------------------------------------------------------------------- /ScpControl/DIFxAPI/amd64/DIFxAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/DIFxAPI/amd64/DIFxAPI.dll -------------------------------------------------------------------------------- /ScpControl/DIFxAPI/x86/DIFxAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/DIFxAPI/x86/DIFxAPI.dll -------------------------------------------------------------------------------- /ScpControl/Database/DBreezeEngineExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Database/DBreezeEngineExtensions.cs -------------------------------------------------------------------------------- /ScpControl/Database/ScpDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Database/ScpDb.cs -------------------------------------------------------------------------------- /ScpControl/Driver/Devcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Driver/Devcon.cs -------------------------------------------------------------------------------- /ScpControl/Driver/Difx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Driver/Difx.cs -------------------------------------------------------------------------------- /ScpControl/Driver/DriverInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Driver/DriverInstaller.cs -------------------------------------------------------------------------------- /ScpControl/Driver/NativeLibraryWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Driver/NativeLibraryWrapper.cs -------------------------------------------------------------------------------- /ScpControl/Driver/PNPUtilLib/DriverStoreEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Driver/PNPUtilLib/DriverStoreEntry.cs -------------------------------------------------------------------------------- /ScpControl/Driver/PNPUtilLib/IDriverStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Driver/PNPUtilLib/IDriverStore.cs -------------------------------------------------------------------------------- /ScpControl/Driver/PNPUtilLib/PNPUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Driver/PNPUtilLib/PNPUtil.cs -------------------------------------------------------------------------------- /ScpControl/Driver/WdiWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Driver/WdiWrapper.cs -------------------------------------------------------------------------------- /ScpControl/Driver/WinUsbWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Driver/WinUsbWrapper.cs -------------------------------------------------------------------------------- /ScpControl/Driver/XOutputWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Driver/XOutputWrapper.cs -------------------------------------------------------------------------------- /ScpControl/Exceptions/RootHubAlreadyStartedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Exceptions/RootHubAlreadyStartedException.cs -------------------------------------------------------------------------------- /ScpControl/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/FodyWeavers.xml -------------------------------------------------------------------------------- /ScpControl/Libarius.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Libarius.XML -------------------------------------------------------------------------------- /ScpControl/LilyPad/LilyPad-Scp-r5875.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/LilyPad/LilyPad-Scp-r5875.dll -------------------------------------------------------------------------------- /ScpControl/Media/connect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Media/connect.wav -------------------------------------------------------------------------------- /ScpControl/Media/disconnect.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Media/disconnect.flac -------------------------------------------------------------------------------- /ScpControl/Media/startup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Media/startup.ogg -------------------------------------------------------------------------------- /ScpControl/Profiler/DualShockProfileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Profiler/DualShockProfileManager.cs -------------------------------------------------------------------------------- /ScpControl/Profiler/VirtualMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Profiler/VirtualMouse.cs -------------------------------------------------------------------------------- /ScpControl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpControl/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpControl/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpControl/Properties/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Properties/Settings.cs -------------------------------------------------------------------------------- /ScpControl/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpControl/RootHub.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/RootHub.Designer.cs -------------------------------------------------------------------------------- /ScpControl/RootHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/RootHub.cs -------------------------------------------------------------------------------- /ScpControl/RootHub.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/RootHub.resx -------------------------------------------------------------------------------- /ScpControl/Rx/IChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Rx/IChannel.cs -------------------------------------------------------------------------------- /ScpControl/Rx/ScpNativeFeedChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Rx/ScpNativeFeedChannel.cs -------------------------------------------------------------------------------- /ScpControl/Rx/ScpUdpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Rx/ScpUdpServer.cs -------------------------------------------------------------------------------- /ScpControl/ScpControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpControl.csproj -------------------------------------------------------------------------------- /ScpControl/ScpControl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpControl.ini -------------------------------------------------------------------------------- /ScpControl/ScpControl_2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpControl_2010.csproj -------------------------------------------------------------------------------- /ScpControl/ScpCore/GlobalConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpCore/GlobalConfiguration.cs -------------------------------------------------------------------------------- /ScpControl/ScpCore/SingletonBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpCore/SingletonBase.cs -------------------------------------------------------------------------------- /ScpControl/ScpDevice.Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpDevice.Interop.cs -------------------------------------------------------------------------------- /ScpControl/ScpDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpDevice.cs -------------------------------------------------------------------------------- /ScpControl/ScpHub.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpHub.Designer.cs -------------------------------------------------------------------------------- /ScpControl/ScpHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpHub.cs -------------------------------------------------------------------------------- /ScpControl/ScpProxy.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpProxy.Designer.cs -------------------------------------------------------------------------------- /ScpControl/ScpProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpProxy.cs -------------------------------------------------------------------------------- /ScpControl/ScpProxy.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpProxy.resx -------------------------------------------------------------------------------- /ScpControl/ScpTimer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpTimer.Designer.cs -------------------------------------------------------------------------------- /ScpControl/ScpTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpTimer.cs -------------------------------------------------------------------------------- /ScpControl/ScpUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpUtil.cs -------------------------------------------------------------------------------- /ScpControl/ScpVBus/amd64/ScpVBus.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpVBus/amd64/ScpVBus.inf -------------------------------------------------------------------------------- /ScpControl/ScpVBus/amd64/ScpVBus.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpVBus/amd64/ScpVBus.sys -------------------------------------------------------------------------------- /ScpControl/ScpVBus/amd64/WdfCoinstaller01009.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpVBus/amd64/WdfCoinstaller01009.dll -------------------------------------------------------------------------------- /ScpControl/ScpVBus/amd64/scpvbus.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpVBus/amd64/scpvbus.cat -------------------------------------------------------------------------------- /ScpControl/ScpVBus/x86/ScpVBus.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpVBus/x86/ScpVBus.inf -------------------------------------------------------------------------------- /ScpControl/ScpVBus/x86/ScpVBus.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpVBus/x86/ScpVBus.sys -------------------------------------------------------------------------------- /ScpControl/ScpVBus/x86/WdfCoinstaller01009.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpVBus/x86/WdfCoinstaller01009.dll -------------------------------------------------------------------------------- /ScpControl/ScpVBus/x86/scpvbus.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ScpVBus/x86/scpvbus.cat -------------------------------------------------------------------------------- /ScpControl/Sound/AudioPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Sound/AudioPlayer.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Ds3/DS3Cal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Ds3/DS3Cal.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Ds3/Replica/UsbDs3Afterglow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Ds3/Replica/UsbDs3Afterglow.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Ds3/Replica/UsbDs3QuadStick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Ds3/Replica/UsbDs3QuadStick.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Ds3/UsbDs3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Ds3/UsbDs3.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Ds4/DS4Cal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Ds4/DS4Cal.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Ds4/UsbDs4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Ds4/UsbDs4.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Gamepads/UsbBadBigBenGamepad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Gamepads/UsbBadBigBenGamepad.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Gamepads/UsbBlankGamepad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Gamepads/UsbBlankGamepad.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Gamepads/UsbGameStopDigitalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Gamepads/UsbGameStopDigitalController.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Gamepads/UsbGameStopPcAdvanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Gamepads/UsbGameStopPcAdvanced.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Gamepads/UsbGenericGamepad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Gamepads/UsbGenericGamepad.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Gamepads/UsbLsiLogicGamepad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Gamepads/UsbLsiLogicGamepad.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Gamepads/UsbMadcatzTournamentEdition2Fightstick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Gamepads/UsbMadcatzTournamentEdition2Fightstick.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Gamepads/UsbShanWanWirelessGamepad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Gamepads/UsbShanWanWirelessGamepad.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Gamepads/UsbSnesGamepad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Gamepads/UsbSnesGamepad.cs -------------------------------------------------------------------------------- /ScpControl/Usb/Gamepads/UsbTwinUSBJoystick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/Gamepads/UsbTwinUSBJoystick.cs -------------------------------------------------------------------------------- /ScpControl/Usb/PnP/UsbNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/PnP/UsbNotifier.cs -------------------------------------------------------------------------------- /ScpControl/Usb/PnP/Win32Usb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/PnP/Win32Usb.cs -------------------------------------------------------------------------------- /ScpControl/Usb/UsbDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/UsbDevice.cs -------------------------------------------------------------------------------- /ScpControl/Usb/UsbHub.3rdPartyFixes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/UsbHub.3rdPartyFixes.cs -------------------------------------------------------------------------------- /ScpControl/Usb/UsbHub.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/UsbHub.Designer.cs -------------------------------------------------------------------------------- /ScpControl/Usb/UsbHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/UsbHub.cs -------------------------------------------------------------------------------- /ScpControl/Usb/UsbSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Usb/UsbSpecification.cs -------------------------------------------------------------------------------- /ScpControl/UsbDs3AfterglowAp2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/UsbDs3AfterglowAp2.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/AssemblyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/AssemblyHelper.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/ByteArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/ByteArrayExtensions.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/ConcurrentDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/ConcurrentDictionaryExtensions.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/ControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/ControlExtensions.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/DumpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/DumpHelper.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/EnumExtensions.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/FileDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/FileDownloader.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/FileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/FileExtensions.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/GenericGamepadConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/GenericGamepadConfig.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/ILogExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/ILogExtensions.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/IniConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/IniConfig.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/MacAddressGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/MacAddressGenerator.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/OSVersionInfoClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/OSVersionInfoClass.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/OsInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/OsInfoHelper.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/PhysicalAddressExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/PhysicalAddressExtensions.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/PortableSettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/PortableSettingsProvider.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/ProcessHelper.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/StringExtensions.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/TaskQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/TaskQueue.cs -------------------------------------------------------------------------------- /ScpControl/Utilities/ThemeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Utilities/ThemeUtil.cs -------------------------------------------------------------------------------- /ScpControl/Value Converters/EnumDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Value Converters/EnumDescriptionConverter.cs -------------------------------------------------------------------------------- /ScpControl/Value Converters/MultiCheckedToEnabledConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Value Converters/MultiCheckedToEnabledConverter.cs -------------------------------------------------------------------------------- /ScpControl/Value Converters/RadioBoolToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Value Converters/RadioBoolToIntConverter.cs -------------------------------------------------------------------------------- /ScpControl/Wcf/IScpCommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/Wcf/IScpCommandService.cs -------------------------------------------------------------------------------- /ScpControl/WinUSB/BluetoothHost.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/WinUSB/BluetoothHost.inf -------------------------------------------------------------------------------- /ScpControl/WinUSB/Ds3Controller.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/WinUSB/Ds3Controller.inf -------------------------------------------------------------------------------- /ScpControl/WinUSB/Ds4Controller.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/WinUSB/Ds4Controller.inf -------------------------------------------------------------------------------- /ScpControl/WinUSB/amd64/WdfCoInstaller01011.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/WinUSB/amd64/WdfCoInstaller01011.dll -------------------------------------------------------------------------------- /ScpControl/WinUSB/amd64/winusbcoinstaller2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/WinUSB/amd64/winusbcoinstaller2.dll -------------------------------------------------------------------------------- /ScpControl/WinUSB/bluetoothhost.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/WinUSB/bluetoothhost.cat -------------------------------------------------------------------------------- /ScpControl/WinUSB/ds3controller.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/WinUSB/ds3controller.cat -------------------------------------------------------------------------------- /ScpControl/WinUSB/ds4controller.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/WinUSB/ds4controller.cat -------------------------------------------------------------------------------- /ScpControl/WinUSB/x86/WdfCoInstaller01011.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/WinUSB/x86/WdfCoInstaller01011.dll -------------------------------------------------------------------------------- /ScpControl/WinUSB/x86/winusbcoinstaller2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/WinUSB/x86/winusbcoinstaller2.dll -------------------------------------------------------------------------------- /ScpControl/XOutput/amd64/XOutput1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/XOutput/amd64/XOutput1_1.dll -------------------------------------------------------------------------------- /ScpControl/XOutput/x86/XOutput1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/XOutput/x86/XOutput1_1.dll -------------------------------------------------------------------------------- /ScpControl/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/app.config -------------------------------------------------------------------------------- /ScpControl/ds3cal/x64/ds3cal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ds3cal/x64/ds3cal.dll -------------------------------------------------------------------------------- /ScpControl/ds3cal/x86/ds3cal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/ds3cal/x86/ds3cal.dll -------------------------------------------------------------------------------- /ScpControl/irrKlang/amd64/ikpFlac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/irrKlang/amd64/ikpFlac.dll -------------------------------------------------------------------------------- /ScpControl/irrKlang/amd64/ikpMP3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/irrKlang/amd64/ikpMP3.dll -------------------------------------------------------------------------------- /ScpControl/irrKlang/amd64/irrKlang.NET4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/irrKlang/amd64/irrKlang.NET4.dll -------------------------------------------------------------------------------- /ScpControl/irrKlang/x86/ikpFlac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/irrKlang/x86/ikpFlac.dll -------------------------------------------------------------------------------- /ScpControl/irrKlang/x86/ikpMP3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/irrKlang/x86/ikpMP3.dll -------------------------------------------------------------------------------- /ScpControl/irrKlang/x86/irrKlang.NET4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/irrKlang/x86/irrKlang.NET4.dll -------------------------------------------------------------------------------- /ScpControl/libwdi/amd64/libwdi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/libwdi/amd64/libwdi.dll -------------------------------------------------------------------------------- /ScpControl/libwdi/amd64/wdi-simple.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/libwdi/amd64/wdi-simple.exe -------------------------------------------------------------------------------- /ScpControl/libwdi/x86/libwdi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/libwdi/x86/libwdi.dll -------------------------------------------------------------------------------- /ScpControl/libwdi/x86/wdi-simple.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/libwdi/x86/wdi-simple.exe -------------------------------------------------------------------------------- /ScpControl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/packages.config -------------------------------------------------------------------------------- /ScpControl/updater.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControl/updater.ico -------------------------------------------------------------------------------- /ScpControlPanel/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/App.config -------------------------------------------------------------------------------- /ScpControlPanel/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/App.xaml -------------------------------------------------------------------------------- /ScpControlPanel/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/App.xaml.cs -------------------------------------------------------------------------------- /ScpControlPanel/Controls/PadEntryCollectionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Controls/PadEntryCollectionControl.xaml -------------------------------------------------------------------------------- /ScpControlPanel/Controls/PadEntryCollectionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Controls/PadEntryCollectionControl.xaml.cs -------------------------------------------------------------------------------- /ScpControlPanel/Controls/PadEntryControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Controls/PadEntryControl.xaml -------------------------------------------------------------------------------- /ScpControlPanel/Controls/PadEntryControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Controls/PadEntryControl.xaml.cs -------------------------------------------------------------------------------- /ScpControlPanel/Dual Shock 3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Dual Shock 3.ico -------------------------------------------------------------------------------- /ScpControlPanel/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/FodyWeavers.xml -------------------------------------------------------------------------------- /ScpControlPanel/Icons/arrow-up.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Icons/arrow-up.ico -------------------------------------------------------------------------------- /ScpControlPanel/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/MainWindow.xaml -------------------------------------------------------------------------------- /ScpControlPanel/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ScpControlPanel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpControlPanel/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpControlPanel/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpControlPanel/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpControlPanel/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpControlPanel/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpControlPanel/ScpControlPanel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/ScpControlPanel.csproj -------------------------------------------------------------------------------- /ScpControlPanel/Themes/MetroDark/HowToApplyTheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Themes/MetroDark/HowToApplyTheme.txt -------------------------------------------------------------------------------- /ScpControlPanel/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml -------------------------------------------------------------------------------- /ScpControlPanel/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml -------------------------------------------------------------------------------- /ScpControlPanel/Themes/MetroDark/Styles.Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Themes/MetroDark/Styles.Shared.xaml -------------------------------------------------------------------------------- /ScpControlPanel/Themes/MetroDark/Styles.WPF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Themes/MetroDark/Styles.WPF.xaml -------------------------------------------------------------------------------- /ScpControlPanel/Themes/MetroDark/Theme.Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/Themes/MetroDark/Theme.Colors.xaml -------------------------------------------------------------------------------- /ScpControlPanel/View Models/PadStatsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/View Models/PadStatsViewModel.cs -------------------------------------------------------------------------------- /ScpControlPanel/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/app.manifest -------------------------------------------------------------------------------- /ScpControlPanel/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpControlPanel/packages.config -------------------------------------------------------------------------------- /ScpDebugInfoCollector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDebugInfoCollector/App.config -------------------------------------------------------------------------------- /ScpDebugInfoCollector/Bug.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDebugInfoCollector/Bug.ico -------------------------------------------------------------------------------- /ScpDebugInfoCollector/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDebugInfoCollector/Program.cs -------------------------------------------------------------------------------- /ScpDebugInfoCollector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDebugInfoCollector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpDebugInfoCollector/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDebugInfoCollector/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpDebugInfoCollector/ScpDebugInfoCollector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDebugInfoCollector/ScpDebugInfoCollector.csproj -------------------------------------------------------------------------------- /ScpDebugInfoCollector/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDebugInfoCollector/app.manifest -------------------------------------------------------------------------------- /ScpDebugInfoCollector/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDebugInfoCollector/packages.config -------------------------------------------------------------------------------- /ScpDriverInstaller/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/App.config -------------------------------------------------------------------------------- /ScpDriverInstaller/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/App.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/App.xaml.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/FodyWeavers.xml -------------------------------------------------------------------------------- /ScpDriverInstaller/Images/Warning.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Images/Warning.fr.png -------------------------------------------------------------------------------- /ScpDriverInstaller/Images/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Images/Warning.png -------------------------------------------------------------------------------- /ScpDriverInstaller/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/MainWindow.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/Properties/Resources.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Properties/Resources.fr.resx -------------------------------------------------------------------------------- /ScpDriverInstaller/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpDriverInstaller/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpDriverInstaller/Scp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Scp.ico -------------------------------------------------------------------------------- /ScpDriverInstaller/ScpDriverInstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/ScpDriverInstaller.csproj -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/Metro/HowToApplyTheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/Metro/HowToApplyTheme.txt -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/Metro/Metro.MSControls.Core.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/Metro/Metro.MSControls.Core.Implicit.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/Metro/Metro.MSControls.Toolkit.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/Metro/Metro.MSControls.Toolkit.Implicit.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/Metro/Styles.Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/Metro/Styles.Shared.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/Metro/Styles.WPF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/Metro/Styles.WPF.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/Metro/Theme.Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/Metro/Theme.Colors.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/MetroDark/HowToApplyTheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/MetroDark/HowToApplyTheme.txt -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/MetroDark/Styles.Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/MetroDark/Styles.Shared.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/MetroDark/Styles.WPF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/MetroDark/Styles.WPF.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/Themes/MetroDark/Theme.Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Themes/MetroDark/Theme.Colors.xaml -------------------------------------------------------------------------------- /ScpDriverInstaller/Usb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Usb.ico -------------------------------------------------------------------------------- /ScpDriverInstaller/Utilities/BitmapToImageSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Utilities/BitmapToImageSourceConverter.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/Utilities/ExtendedMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Utilities/ExtendedMessageBox.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/Utilities/NotifyAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Utilities/NotifyAppender.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/Utilities/RedistPackageInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Utilities/RedistPackageInstaller.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/Utilities/UiContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Utilities/UiContext.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/Utilities/WPFThreadingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/Utilities/WPFThreadingExtensions.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/View Models/InstallationOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/View Models/InstallationOptionsViewModel.cs -------------------------------------------------------------------------------- /ScpDriverInstaller/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/app.manifest -------------------------------------------------------------------------------- /ScpDriverInstaller/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpDriverInstaller/packages.config -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/App.config -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/App.xaml -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/App.xaml.cs -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/MainWindow.xaml -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Scp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Scp.ico -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/ScpGamepadAnalyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/ScpGamepadAnalyzer.csproj -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Themes/MetroDark/HowToApplyTheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Themes/MetroDark/HowToApplyTheme.txt -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Themes/MetroDark/Styles.Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Themes/MetroDark/Styles.Shared.xaml -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Themes/MetroDark/Styles.WPF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Themes/MetroDark/Styles.WPF.xaml -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/Themes/MetroDark/Theme.Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/Themes/MetroDark/Theme.Colors.xaml -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/app.manifest -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/gamepad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/gamepad.ico -------------------------------------------------------------------------------- /ScpGamepadAnalyzer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpGamepadAnalyzer/packages.config -------------------------------------------------------------------------------- /ScpInstaller/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/App.config -------------------------------------------------------------------------------- /ScpInstaller/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/Program.cs -------------------------------------------------------------------------------- /ScpInstaller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpInstaller/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpInstaller/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpInstaller/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpInstaller/Properties/ScpInstaller.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/Properties/ScpInstaller.manifest -------------------------------------------------------------------------------- /ScpInstaller/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpInstaller/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpInstaller/Resources/Scp_All.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/Resources/Scp_All.ico -------------------------------------------------------------------------------- /ScpInstaller/ScpDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/ScpDriver.cs -------------------------------------------------------------------------------- /ScpInstaller/ScpDriver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/ScpDriver.xml -------------------------------------------------------------------------------- /ScpInstaller/ScpForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/ScpForm.Designer.cs -------------------------------------------------------------------------------- /ScpInstaller/ScpForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/ScpForm.cs -------------------------------------------------------------------------------- /ScpInstaller/ScpForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/ScpForm.resx -------------------------------------------------------------------------------- /ScpInstaller/ScpInstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/ScpInstaller.csproj -------------------------------------------------------------------------------- /ScpInstaller/ScpInstaller_2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/ScpInstaller_2010.csproj -------------------------------------------------------------------------------- /ScpInstaller/Utilities/TextBoxAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/Utilities/TextBoxAppender.cs -------------------------------------------------------------------------------- /ScpInstaller/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpInstaller/packages.config -------------------------------------------------------------------------------- /ScpLauncher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/App.config -------------------------------------------------------------------------------- /ScpLauncher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/App.xaml -------------------------------------------------------------------------------- /ScpLauncher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/App.xaml.cs -------------------------------------------------------------------------------- /ScpLauncher/Icons/browser-web-content.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/browser-web-content.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/calendar-date-month-planner.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/calendar-date-month-planner.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/checked-www-domain-window.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/checked-www-domain-window.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/computer-devices-responsive.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/computer-devices-responsive.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/database-gear.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/database-gear.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/developer-api-coding-screen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/developer-api-coding-screen.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/document.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/document.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/gamepad-gear.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/gamepad-gear.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/internet-network.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/internet-network.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/internet-page-content.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/internet-page-content.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/network-server.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/network-server.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/responsive-layout-screen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/responsive-layout-screen.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/window-tools.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/window-tools.ico -------------------------------------------------------------------------------- /ScpLauncher/Icons/www-world-globe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Icons/www-world-globe.ico -------------------------------------------------------------------------------- /ScpLauncher/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/MainWindow.xaml -------------------------------------------------------------------------------- /ScpLauncher/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ScpLauncher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpLauncher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpLauncher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpLauncher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpLauncher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpLauncher/Scp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Scp.ico -------------------------------------------------------------------------------- /ScpLauncher/ScpLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/ScpLauncher.csproj -------------------------------------------------------------------------------- /ScpLauncher/Themes/Metro/HowToApplyTheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/Metro/HowToApplyTheme.txt -------------------------------------------------------------------------------- /ScpLauncher/Themes/Metro/Metro.MSControls.Core.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/Metro/Metro.MSControls.Core.Implicit.xaml -------------------------------------------------------------------------------- /ScpLauncher/Themes/Metro/Metro.MSControls.Toolkit.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/Metro/Metro.MSControls.Toolkit.Implicit.xaml -------------------------------------------------------------------------------- /ScpLauncher/Themes/Metro/Styles.Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/Metro/Styles.Shared.xaml -------------------------------------------------------------------------------- /ScpLauncher/Themes/Metro/Styles.WPF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/Metro/Styles.WPF.xaml -------------------------------------------------------------------------------- /ScpLauncher/Themes/Metro/Theme.Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/Metro/Theme.Colors.xaml -------------------------------------------------------------------------------- /ScpLauncher/Themes/MetroDark/HowToApplyTheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/MetroDark/HowToApplyTheme.txt -------------------------------------------------------------------------------- /ScpLauncher/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml -------------------------------------------------------------------------------- /ScpLauncher/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml -------------------------------------------------------------------------------- /ScpLauncher/Themes/MetroDark/Styles.Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/MetroDark/Styles.Shared.xaml -------------------------------------------------------------------------------- /ScpLauncher/Themes/MetroDark/Styles.WPF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/MetroDark/Styles.WPF.xaml -------------------------------------------------------------------------------- /ScpLauncher/Themes/MetroDark/Theme.Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/Themes/MetroDark/Theme.Colors.xaml -------------------------------------------------------------------------------- /ScpLauncher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpLauncher/packages.config -------------------------------------------------------------------------------- /ScpMonitor/AxisBar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/AxisBar.Designer.cs -------------------------------------------------------------------------------- /ScpMonitor/AxisBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/AxisBar.cs -------------------------------------------------------------------------------- /ScpMonitor/AxisBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/AxisBar.resx -------------------------------------------------------------------------------- /ScpMonitor/AxisControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/AxisControl.Designer.cs -------------------------------------------------------------------------------- /ScpMonitor/AxisControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/AxisControl.cs -------------------------------------------------------------------------------- /ScpMonitor/AxisControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/AxisControl.resx -------------------------------------------------------------------------------- /ScpMonitor/CrossThreadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/CrossThreadHelper.cs -------------------------------------------------------------------------------- /ScpMonitor/ProfilesForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/ProfilesForm.Designer.cs -------------------------------------------------------------------------------- /ScpMonitor/ProfilesForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/ProfilesForm.cs -------------------------------------------------------------------------------- /ScpMonitor/ProfilesForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/ProfilesForm.resx -------------------------------------------------------------------------------- /ScpMonitor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/Program.cs -------------------------------------------------------------------------------- /ScpMonitor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpMonitor/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpMonitor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpMonitor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpMonitor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpMonitor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpMonitor/RegistryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/RegistryProvider.cs -------------------------------------------------------------------------------- /ScpMonitor/Resources/Scp_All.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/Resources/Scp_All.ico -------------------------------------------------------------------------------- /ScpMonitor/ScpButton.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/ScpButton.Designer.cs -------------------------------------------------------------------------------- /ScpMonitor/ScpButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/ScpButton.cs -------------------------------------------------------------------------------- /ScpMonitor/ScpForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/ScpForm.Designer.cs -------------------------------------------------------------------------------- /ScpMonitor/ScpForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/ScpForm.cs -------------------------------------------------------------------------------- /ScpMonitor/ScpForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/ScpForm.resx -------------------------------------------------------------------------------- /ScpMonitor/ScpMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/ScpMonitor.csproj -------------------------------------------------------------------------------- /ScpMonitor/ScpMonitor_2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/ScpMonitor_2010.csproj -------------------------------------------------------------------------------- /ScpMonitor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/app.config -------------------------------------------------------------------------------- /ScpMonitor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpMonitor/packages.config -------------------------------------------------------------------------------- /ScpPair/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/Program.cs -------------------------------------------------------------------------------- /ScpPair/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpPair/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpPair/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpPair/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpPair/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpPair/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpPair/Resources/Scp_All.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/Resources/Scp_All.ico -------------------------------------------------------------------------------- /ScpPair/ScpForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/ScpForm.Designer.cs -------------------------------------------------------------------------------- /ScpPair/ScpForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/ScpForm.cs -------------------------------------------------------------------------------- /ScpPair/ScpForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/ScpForm.resx -------------------------------------------------------------------------------- /ScpPair/ScpPair.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/ScpPair.csproj -------------------------------------------------------------------------------- /ScpPair/ScpPair_2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/ScpPair_2010.csproj -------------------------------------------------------------------------------- /ScpPair/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/app.config -------------------------------------------------------------------------------- /ScpPair/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpPair/packages.config -------------------------------------------------------------------------------- /ScpProfiler/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/App.config -------------------------------------------------------------------------------- /ScpProfiler/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/App.xaml -------------------------------------------------------------------------------- /ScpProfiler/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/App.xaml.cs -------------------------------------------------------------------------------- /ScpProfiler/AxisMappingEntryControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/AxisMappingEntryControl.xaml -------------------------------------------------------------------------------- /ScpProfiler/AxisMappingEntryControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/AxisMappingEntryControl.xaml.cs -------------------------------------------------------------------------------- /ScpProfiler/ButtonMappingEntryControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/ButtonMappingEntryControl.xaml -------------------------------------------------------------------------------- /ScpProfiler/ButtonMappingEntryControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/ButtonMappingEntryControl.xaml.cs -------------------------------------------------------------------------------- /ScpProfiler/ButtonMappingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/ButtonMappingViewModel.cs -------------------------------------------------------------------------------- /ScpProfiler/DpadAxisControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/DpadAxisControl.xaml -------------------------------------------------------------------------------- /ScpProfiler/DpadAxisControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/DpadAxisControl.xaml.cs -------------------------------------------------------------------------------- /ScpProfiler/DualShockProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/DualShockProfileViewModel.cs -------------------------------------------------------------------------------- /ScpProfiler/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/FodyWeavers.xml -------------------------------------------------------------------------------- /ScpProfiler/Icons/32px-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/32px-Settings.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/32px-Settings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/32px-Settings2.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_Circle.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_Cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_Cross.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_Dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_Dpad.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_L1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_L1.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_L2.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_L3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_L3.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_Left_Stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_Left_Stick.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_PSHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_PSHome.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_R1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_R1.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_R2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_R2.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_R3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_R3.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_Right_Stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_Right_Stick.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_Select.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_Sqaure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_Sqaure.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_Start.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-PS3_Triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-PS3_Triangle.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/48px-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/48px-Settings.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/a_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/a_butt.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/b_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/b_butt.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/back_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/back_butt.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/dpad_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/dpad_all.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/dpad_down.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/dpad_left.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/dpad_leftright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/dpad_leftright.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/dpad_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/dpad_none.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/dpad_right.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/dpad_up.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/dpad_updown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/dpad_updown.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/lb_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/lb_butt.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/lstick_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/lstick_all.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/lstick_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/lstick_down.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/lstick_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/lstick_left.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/lstick_leftright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/lstick_leftright.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/lstick_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/lstick_none.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/lstick_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/lstick_right.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/lstick_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/lstick_up.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/lstick_updown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/lstick_updown.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/lt_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/lt_butt.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/rb_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/rb_butt.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/rstick_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/rstick_all.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/rstick_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/rstick_down.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/rstick_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/rstick_left.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/rstick_leftright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/rstick_leftright.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/rstick_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/rstick_none.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/rstick_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/rstick_right.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/rstick_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/rstick_up.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/rstick_updown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/rstick_updown.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/rt_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/rt_butt.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/start_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/start_butt.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/x_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/x_butt.png -------------------------------------------------------------------------------- /ScpProfiler/Icons/Ds4/y_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Icons/Ds4/y_butt.png -------------------------------------------------------------------------------- /ScpProfiler/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/MainWindow.xaml -------------------------------------------------------------------------------- /ScpProfiler/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ScpProfiler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpProfiler/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpProfiler/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpProfiler/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpProfiler/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpProfiler/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpProfiler/Scp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Scp.ico -------------------------------------------------------------------------------- /ScpProfiler/ScpProfiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/ScpProfiler.csproj -------------------------------------------------------------------------------- /ScpProfiler/Themes/MetroDark/HowToApplyTheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Themes/MetroDark/HowToApplyTheme.txt -------------------------------------------------------------------------------- /ScpProfiler/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml -------------------------------------------------------------------------------- /ScpProfiler/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml -------------------------------------------------------------------------------- /ScpProfiler/Themes/MetroDark/Styles.Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Themes/MetroDark/Styles.Shared.xaml -------------------------------------------------------------------------------- /ScpProfiler/Themes/MetroDark/Styles.WPF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Themes/MetroDark/Styles.WPF.xaml -------------------------------------------------------------------------------- /ScpProfiler/Themes/MetroDark/Theme.Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/Themes/MetroDark/Theme.Colors.xaml -------------------------------------------------------------------------------- /ScpProfiler/ThumbStickAxisControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/ThumbStickAxisControl.xaml -------------------------------------------------------------------------------- /ScpProfiler/ThumbStickAxisControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/ThumbStickAxisControl.xaml.cs -------------------------------------------------------------------------------- /ScpProfiler/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/packages.config -------------------------------------------------------------------------------- /ScpProfiler/redirect.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/redirect.ico -------------------------------------------------------------------------------- /ScpProfiler/xbox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpProfiler/xbox.ico -------------------------------------------------------------------------------- /ScpServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer.sln -------------------------------------------------------------------------------- /ScpServer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/App.config -------------------------------------------------------------------------------- /ScpServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/Program.cs -------------------------------------------------------------------------------- /ScpServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpServer/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpServer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpServer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpServer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpServer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpServer/Resources/Scp_All.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/Resources/Scp_All.ico -------------------------------------------------------------------------------- /ScpServer/ScpForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/ScpForm.Designer.cs -------------------------------------------------------------------------------- /ScpServer/ScpForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/ScpForm.cs -------------------------------------------------------------------------------- /ScpServer/ScpForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/ScpForm.resx -------------------------------------------------------------------------------- /ScpServer/ScpServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/ScpServer.csproj -------------------------------------------------------------------------------- /ScpServer/ScpServer_2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/ScpServer_2010.csproj -------------------------------------------------------------------------------- /ScpServer/Utilities/ListViewAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/Utilities/ListViewAppender.cs -------------------------------------------------------------------------------- /ScpServer/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/app.manifest -------------------------------------------------------------------------------- /ScpServer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpServer/packages.config -------------------------------------------------------------------------------- /ScpService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/App.config -------------------------------------------------------------------------------- /ScpService/Ds3Service.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/Ds3Service.Designer.cs -------------------------------------------------------------------------------- /ScpService/Ds3Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/Ds3Service.cs -------------------------------------------------------------------------------- /ScpService/Ds3Service.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/Ds3Service.resx -------------------------------------------------------------------------------- /ScpService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/Program.cs -------------------------------------------------------------------------------- /ScpService/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/ProjectInstaller.Designer.cs -------------------------------------------------------------------------------- /ScpService/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/ProjectInstaller.cs -------------------------------------------------------------------------------- /ScpService/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/ProjectInstaller.resx -------------------------------------------------------------------------------- /ScpService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpService/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpService/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpService/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpService/Resources/Scp_All.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/Resources/Scp_All.ico -------------------------------------------------------------------------------- /ScpService/ScpService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/ScpService.csproj -------------------------------------------------------------------------------- /ScpService/ScpService_2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/ScpService_2010.csproj -------------------------------------------------------------------------------- /ScpService/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/app.manifest -------------------------------------------------------------------------------- /ScpService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpService/packages.config -------------------------------------------------------------------------------- /ScpSettings/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/App.config -------------------------------------------------------------------------------- /ScpSettings/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/App.xaml -------------------------------------------------------------------------------- /ScpSettings/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/App.xaml.cs -------------------------------------------------------------------------------- /ScpSettings/Controls/DirectoryBrowserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Controls/DirectoryBrowserControl.xaml -------------------------------------------------------------------------------- /ScpSettings/Controls/DirectoryBrowserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Controls/DirectoryBrowserControl.xaml.cs -------------------------------------------------------------------------------- /ScpSettings/Controls/FileBrowserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Controls/FileBrowserControl.xaml -------------------------------------------------------------------------------- /ScpSettings/Controls/FileBrowserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Controls/FileBrowserControl.xaml.cs -------------------------------------------------------------------------------- /ScpSettings/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/FodyWeavers.xml -------------------------------------------------------------------------------- /ScpSettings/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/MainWindow.xaml -------------------------------------------------------------------------------- /ScpSettings/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ScpSettings/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpSettings/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpSettings/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpSettings/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpSettings/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpSettings/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpSettings/Scp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Scp.ico -------------------------------------------------------------------------------- /ScpSettings/ScpSettings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/ScpSettings.csproj -------------------------------------------------------------------------------- /ScpSettings/Themes/MetroDark/HowToApplyTheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Themes/MetroDark/HowToApplyTheme.txt -------------------------------------------------------------------------------- /ScpSettings/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Themes/MetroDark/MetroDark.MSControls.Core.Implicit.xaml -------------------------------------------------------------------------------- /ScpSettings/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Themes/MetroDark/MetroDark.MSControls.Toolkit.Implicit.xaml -------------------------------------------------------------------------------- /ScpSettings/Themes/MetroDark/Styles.Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Themes/MetroDark/Styles.Shared.xaml -------------------------------------------------------------------------------- /ScpSettings/Themes/MetroDark/Styles.WPF.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Themes/MetroDark/Styles.WPF.xaml -------------------------------------------------------------------------------- /ScpSettings/Themes/MetroDark/Theme.Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/Themes/MetroDark/Theme.Colors.xaml -------------------------------------------------------------------------------- /ScpSettings/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/packages.config -------------------------------------------------------------------------------- /ScpSettings/settings.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpSettings/settings.ico -------------------------------------------------------------------------------- /ScpTrayApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/App.config -------------------------------------------------------------------------------- /ScpTrayApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/App.xaml -------------------------------------------------------------------------------- /ScpTrayApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/App.xaml.cs -------------------------------------------------------------------------------- /ScpTrayApp/Dual Shock 3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/Dual Shock 3.ico -------------------------------------------------------------------------------- /ScpTrayApp/Libarius.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/Libarius.XML -------------------------------------------------------------------------------- /ScpTrayApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/MainWindow.xaml -------------------------------------------------------------------------------- /ScpTrayApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ScpTrayApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpTrayApp/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpTrayApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScpTrayApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/Properties/Resources.resx -------------------------------------------------------------------------------- /ScpTrayApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScpTrayApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/Properties/Settings.settings -------------------------------------------------------------------------------- /ScpTrayApp/ScpTrayApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/ScpTrayApp.csproj -------------------------------------------------------------------------------- /ScpTrayApp/WPFThreadingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/WPFThreadingExtensions.cs -------------------------------------------------------------------------------- /ScpTrayApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpTrayApp/packages.config -------------------------------------------------------------------------------- /ScpUser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser.sln -------------------------------------------------------------------------------- /ScpUser/ARPIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ARPIcon.ico -------------------------------------------------------------------------------- /ScpUser/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/AssemblyInfo.cpp -------------------------------------------------------------------------------- /ScpUser/Resources/Controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/Resources/Controller.png -------------------------------------------------------------------------------- /ScpUser/Resources/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/Resources/Game.ico -------------------------------------------------------------------------------- /ScpUser/ScpExtended.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpExtended.cpp -------------------------------------------------------------------------------- /ScpUser/ScpExtended.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpExtended.h -------------------------------------------------------------------------------- /ScpUser/ScpExtended.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpExtended.resx -------------------------------------------------------------------------------- /ScpUser/ScpExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpExtensions.cpp -------------------------------------------------------------------------------- /ScpUser/ScpExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpExtensions.h -------------------------------------------------------------------------------- /ScpUser/ScpPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpPad.h -------------------------------------------------------------------------------- /ScpUser/ScpPad.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpPad.resX -------------------------------------------------------------------------------- /ScpUser/ScpUser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpUser.cpp -------------------------------------------------------------------------------- /ScpUser/ScpUser.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpUser.rc -------------------------------------------------------------------------------- /ScpUser/ScpUser.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpUser.vcxproj -------------------------------------------------------------------------------- /ScpUser/ScpUser.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpUser.vcxproj.filters -------------------------------------------------------------------------------- /ScpUser/ScpUser_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpUser_2010.vcxproj -------------------------------------------------------------------------------- /ScpUser/ScpUser_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpUser_2010.vcxproj.filters -------------------------------------------------------------------------------- /ScpUser/ScpUser_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpUser_x64.props -------------------------------------------------------------------------------- /ScpUser/ScpUser_x86.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/ScpUser_x86.props -------------------------------------------------------------------------------- /ScpUser/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/resource.h -------------------------------------------------------------------------------- /ScpUser/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/stdafx.cpp -------------------------------------------------------------------------------- /ScpUser/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpUser/stdafx.h -------------------------------------------------------------------------------- /ScpXInputBridge/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpXInputBridge/FodyWeavers.xml -------------------------------------------------------------------------------- /ScpXInputBridge/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpXInputBridge/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScpXInputBridge/Properties/CommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpXInputBridge/Properties/CommonInfo.cs -------------------------------------------------------------------------------- /ScpXInputBridge/ScpXInputBridge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpXInputBridge/ScpXInputBridge.csproj -------------------------------------------------------------------------------- /ScpXInputBridge/XInputDll.Exports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpXInputBridge/XInputDll.Exports.cs -------------------------------------------------------------------------------- /ScpXInputBridge/XInputDll.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpXInputBridge/XInputDll.Extensions.cs -------------------------------------------------------------------------------- /ScpXInputBridge/XInputDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpXInputBridge/XInputDll.cs -------------------------------------------------------------------------------- /ScpXInputBridge/XInput_log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpXInputBridge/XInput_log4net.config -------------------------------------------------------------------------------- /ScpXInputBridge/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/ScpXInputBridge/packages.config -------------------------------------------------------------------------------- /Setup/ScpToolkitSetup.suf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/Setup/ScpToolkitSetup.suf -------------------------------------------------------------------------------- /XInput_Scp/BTConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/BTConnection.cpp -------------------------------------------------------------------------------- /XInput_Scp/BTConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/BTConnection.h -------------------------------------------------------------------------------- /XInput_Scp/DS2Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/DS2Controller.cpp -------------------------------------------------------------------------------- /XInput_Scp/DS2Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/DS2Controller.h -------------------------------------------------------------------------------- /XInput_Scp/DS3Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/DS3Controller.cpp -------------------------------------------------------------------------------- /XInput_Scp/DS3Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/DS3Controller.h -------------------------------------------------------------------------------- /XInput_Scp/LibUsbApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/LibUsbApi.cpp -------------------------------------------------------------------------------- /XInput_Scp/LibUsbApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/LibUsbApi.h -------------------------------------------------------------------------------- /XInput_Scp/SCPController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/SCPController.cpp -------------------------------------------------------------------------------- /XInput_Scp/SCPController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/SCPController.h -------------------------------------------------------------------------------- /XInput_Scp/SL3Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/SL3Controller.cpp -------------------------------------------------------------------------------- /XInput_Scp/SL3Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/SL3Controller.h -------------------------------------------------------------------------------- /XInput_Scp/X360Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/X360Controller.cpp -------------------------------------------------------------------------------- /XInput_Scp/X360Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/X360Controller.h -------------------------------------------------------------------------------- /XInput_Scp/XInput_SCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/XInput_SCP.cpp -------------------------------------------------------------------------------- /XInput_Scp/XInput_SCP.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/XInput_SCP.def -------------------------------------------------------------------------------- /XInput_Scp/XInput_SCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/XInput_SCP.h -------------------------------------------------------------------------------- /XInput_Scp/XInput_SCP.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/XInput_SCP.rc -------------------------------------------------------------------------------- /XInput_Scp/XInput_SCP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/XInput_SCP.vcxproj -------------------------------------------------------------------------------- /XInput_Scp/XInput_SCP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/XInput_SCP.vcxproj.filters -------------------------------------------------------------------------------- /XInput_Scp/XInput_SCP_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/XInput_SCP_2010.vcxproj -------------------------------------------------------------------------------- /XInput_Scp/XInput_SCP_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/XInput_SCP_2010.vcxproj.filters -------------------------------------------------------------------------------- /XInput_Scp/XInput_Wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/XInput_Wrap.cpp -------------------------------------------------------------------------------- /XInput_Scp/XInput_Wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/XInput_Wrap.h -------------------------------------------------------------------------------- /XInput_Scp/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/dllmain.cpp -------------------------------------------------------------------------------- /XInput_Scp/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/hid.h -------------------------------------------------------------------------------- /XInput_Scp/pnp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/pnp.cpp -------------------------------------------------------------------------------- /XInput_Scp/report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/report.cpp -------------------------------------------------------------------------------- /XInput_Scp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/resource.h -------------------------------------------------------------------------------- /XInput_Scp/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/stdafx.cpp -------------------------------------------------------------------------------- /XInput_Scp/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/stdafx.h -------------------------------------------------------------------------------- /XInput_Scp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/XInput_Scp/targetver.h -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/packages/repositories.config -------------------------------------------------------------------------------- /updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkosto/ScpToolkit/HEAD/updates.txt --------------------------------------------------------------------------------