├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── help-request.md ├── images │ ├── Screenshot.jpg │ └── guide_dotnet_m1.jpg └── workflows │ ├── StaleIssues.yml │ ├── client-android.yml │ ├── client-cross.yml │ ├── client-linux-x64.yml │ ├── client-macos.yml │ ├── client-windows-x64.yml │ └── sysmodule.yml ├── .gitignore ├── Client ├── BaseStandaloneClient.cs ├── Client.csproj ├── Client.ico ├── ClientApp.cs ├── CommandLineOptions.cs ├── Core │ ├── DebugHelpers.cs │ ├── DebugOptions.cs │ ├── DisposableCollection.cs │ ├── ErrorCodeExtensions.cs │ ├── Native.cs │ ├── NativeLogger.cs │ ├── Options.cs │ ├── StreamInfo.cs │ ├── StreamManager.cs │ └── StringTable.cs ├── GUI │ ├── Components │ │ ├── FramerateCap.cs │ │ ├── Image.cs │ │ └── SDLContext.cs │ ├── ConnectingView.cs │ ├── Interfaces.cs │ ├── MainView.cs │ ├── NetworkScanView.cs │ ├── OptionsView.cs │ ├── PlayerView.cs │ └── UsbDevicesView.cs ├── LegacyPlayer.cs ├── Platform │ ├── Android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SDL │ │ │ │ │ └── Android.mk │ │ │ │ ├── SysDVR-Client │ │ │ │ │ └── Android.mk │ │ │ │ ├── cimgui │ │ │ │ │ └── Android.mk │ │ │ │ └── src │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── JniHelper.h │ │ │ │ │ ├── main.c │ │ │ │ │ ├── native.c │ │ │ │ │ ├── thread.c │ │ │ │ │ └── usb.c │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ ├── exelix11 │ │ │ │ │ └── sysdvr │ │ │ │ │ │ ├── DvrUsbHelper.java │ │ │ │ │ │ ├── SystemHelper.java │ │ │ │ │ │ └── sysdvrActivity.java │ │ │ │ └── org │ │ │ │ │ └── libsdl │ │ │ │ │ └── app │ │ │ │ │ ├── HIDDevice.java │ │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ │ ├── SDL.java │ │ │ │ │ ├── SDLActivity.java │ │ │ │ │ ├── SDLAudioManager.java │ │ │ │ │ ├── SDLControllerManager.java │ │ │ │ │ └── SDLSurface.java │ │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_banner_foreground.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_banner.xml │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_banner.png │ │ │ │ ├── ic_banner_foreground.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── ic_banner_background.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── usbdevices.xml │ │ ├── build.gradle │ │ ├── buildbinaries.sh │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── patches │ │ │ ├── SDL_android.c.patch │ │ │ └── libusb_Android.mk │ │ ├── readme.md │ │ └── settings.gradle │ ├── BuildMacos.sh │ ├── BuildWindows.bat │ ├── DynamicLibraryLoader.cs │ ├── Linux │ │ ├── build-flatpak.sh │ │ ├── com.github.exelix11.sysdvr.desktop │ │ ├── com.github.exelix11.sysdvr.json │ │ ├── flatpak_icon.png │ │ └── sysdvr.rules │ ├── Resources.cs │ ├── Resources │ │ └── resources │ │ │ ├── fonts │ │ │ ├── NotoSans-Regular.ttf │ │ │ ├── NotoSansSC-Regular.ttf │ │ │ ├── NotoSansTC-Regular.ttf │ │ │ └── OpenSans.ttf │ │ │ ├── ico_usb.png │ │ │ ├── ico_wifi.png │ │ │ ├── loading.yuv │ │ │ ├── logo.png │ │ │ └── strings │ │ │ ├── Italian.json │ │ │ ├── english.json │ │ │ ├── french.json │ │ │ ├── german.json │ │ │ ├── polish.json │ │ │ ├── portuguese.json │ │ │ ├── pt-BR.json │ │ │ ├── spanish.json │ │ │ ├── zh-CN.json │ │ │ └── zh-TW.json │ ├── Specific.Win │ │ ├── WinAntiInject.cs │ │ ├── WinClipboard.cs │ │ ├── WinDirverInstallView.cs │ │ ├── WinDriverInstall.cs │ │ └── WinPinvoke.cs │ └── SystemUtil.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Sources │ ├── DeviceConnector.cs │ ├── NetworkScan.cs │ ├── PacketReplayTable.cs │ ├── Protocol.cs │ ├── RecordedSource.cs │ ├── StubSource.cs │ ├── TCPBridge.cs │ ├── UsbContext.cs │ └── UsbStreaming.cs ├── Targets │ ├── FileOutput │ │ ├── LoggingTarget.cs │ │ ├── Mp4Output.cs │ │ └── Mp4Streams.cs │ ├── H264Util.cs │ ├── Player │ │ ├── LibavUtils.cs │ │ ├── Player.cs │ │ ├── Streams.cs │ │ └── SyncHelper.cs │ ├── SDLCapture.cs │ └── StubTarget.cs ├── Test │ └── TestStubClient.cs ├── ThirdParty │ ├── FFmpeg.AutoGen │ │ ├── ConstCharPtrMarshaler.cs │ │ ├── FFmpeg.AutoGen.csproj │ │ ├── FFmpeg.cs │ │ ├── FunctionResolver.cs │ │ ├── IFixedArray.cs │ │ ├── IFunctionResolver.cs │ │ ├── UTF8Marshaler.cs │ │ └── generated │ │ │ ├── Arrays.g.cs │ │ │ ├── Delegates.g.cs │ │ │ ├── DynamicallyLoadedBindings.g.cs │ │ │ ├── Enums.g.cs │ │ │ ├── Structs.g.cs │ │ │ ├── ffmpeg.functions.facade.g.cs │ │ │ ├── ffmpeg.functions.inline.g.cs │ │ │ ├── ffmpeg.libraries.g.cs │ │ │ ├── ffmpeg.macros.g.cs │ │ │ └── vectors.g.cs │ ├── ImGui.NET │ │ ├── Custom │ │ │ └── Custom.cs │ │ ├── Delegates.cs │ │ ├── Generated │ │ │ ├── ImColor.gen.cs │ │ │ ├── ImDrawChannel.gen.cs │ │ │ ├── ImDrawCmd.gen.cs │ │ │ ├── ImDrawCmdHeader.gen.cs │ │ │ ├── ImDrawData.gen.cs │ │ │ ├── ImDrawFlags.gen.cs │ │ │ ├── ImDrawList.gen.cs │ │ │ ├── ImDrawListFlags.gen.cs │ │ │ ├── ImDrawListSplitter.gen.cs │ │ │ ├── ImDrawVert.gen.cs │ │ │ ├── ImFont.gen.cs │ │ │ ├── ImFontAtlas.gen.cs │ │ │ ├── ImFontAtlasCustomRect.gen.cs │ │ │ ├── ImFontAtlasFlags.gen.cs │ │ │ ├── ImFontConfig.gen.cs │ │ │ ├── ImFontGlyph.gen.cs │ │ │ ├── ImFontGlyphRangesBuilder.gen.cs │ │ │ ├── ImGui.gen.cs │ │ │ ├── ImGuiBackendFlags.gen.cs │ │ │ ├── ImGuiButtonFlags.gen.cs │ │ │ ├── ImGuiCol.gen.cs │ │ │ ├── ImGuiColorEditFlags.gen.cs │ │ │ ├── ImGuiComboFlags.gen.cs │ │ │ ├── ImGuiCond.gen.cs │ │ │ ├── ImGuiConfigFlags.gen.cs │ │ │ ├── ImGuiDataType.gen.cs │ │ │ ├── ImGuiDir.gen.cs │ │ │ ├── ImGuiDockNodeFlags.gen.cs │ │ │ ├── ImGuiDragDropFlags.gen.cs │ │ │ ├── ImGuiFocusedFlags.gen.cs │ │ │ ├── ImGuiHoveredFlags.gen.cs │ │ │ ├── ImGuiIO.gen.cs │ │ │ ├── ImGuiInputTextCallbackData.gen.cs │ │ │ ├── ImGuiInputTextFlags.gen.cs │ │ │ ├── ImGuiKey.gen.cs │ │ │ ├── ImGuiKeyData.gen.cs │ │ │ ├── ImGuiListClipper.gen.cs │ │ │ ├── ImGuiModFlags.gen.cs │ │ │ ├── ImGuiMouseButton.gen.cs │ │ │ ├── ImGuiMouseCursor.gen.cs │ │ │ ├── ImGuiMouseSource.gen.cs │ │ │ ├── ImGuiNative.gen.cs │ │ │ ├── ImGuiNavInput.gen.cs │ │ │ ├── ImGuiOnceUponAFrame.gen.cs │ │ │ ├── ImGuiPayload.gen.cs │ │ │ ├── ImGuiPlatformIO.gen.cs │ │ │ ├── ImGuiPlatformImeData.gen.cs │ │ │ ├── ImGuiPlatformMonitor.gen.cs │ │ │ ├── ImGuiPopupFlags.gen.cs │ │ │ ├── ImGuiSelectableFlags.gen.cs │ │ │ ├── ImGuiSizeCallbackData.gen.cs │ │ │ ├── ImGuiSliderFlags.gen.cs │ │ │ ├── ImGuiSortDirection.gen.cs │ │ │ ├── ImGuiStorage.gen.cs │ │ │ ├── ImGuiStyle.gen.cs │ │ │ ├── ImGuiStyleVar.gen.cs │ │ │ ├── ImGuiTabBarFlags.gen.cs │ │ │ ├── ImGuiTabItemFlags.gen.cs │ │ │ ├── ImGuiTableBgTarget.gen.cs │ │ │ ├── ImGuiTableColumnFlags.gen.cs │ │ │ ├── ImGuiTableColumnSortSpecs.gen.cs │ │ │ ├── ImGuiTableFlags.gen.cs │ │ │ ├── ImGuiTableRowFlags.gen.cs │ │ │ ├── ImGuiTableSortSpecs.gen.cs │ │ │ ├── ImGuiTextBuffer.gen.cs │ │ │ ├── ImGuiTextFilter.gen.cs │ │ │ ├── ImGuiTextRange.gen.cs │ │ │ ├── ImGuiTreeNodeFlags.gen.cs │ │ │ ├── ImGuiViewport.gen.cs │ │ │ ├── ImGuiViewportFlags.gen.cs │ │ │ ├── ImGuiWindowClass.gen.cs │ │ │ ├── ImGuiWindowFlags.gen.cs │ │ │ ├── STB_TexteditState.gen.cs │ │ │ ├── StbTexteditRow.gen.cs │ │ │ ├── StbUndoRecord.gen.cs │ │ │ └── StbUndoState.gen.cs │ │ ├── ImDrawData.Manual.cs │ │ ├── ImDrawList.Manual.cs │ │ ├── ImGui.Manual.cs │ │ ├── ImGui.NET.csproj │ │ ├── ImGuiNative.Manual.cs │ │ ├── ImGuiSizeCallback.cs │ │ ├── ImGuiTextEditCallback.cs │ │ ├── ImVector.cs │ │ ├── NullTerminatedString.cs │ │ ├── Pair.cs │ │ ├── RangeAccessor.cs │ │ └── Util.cs │ ├── LibUsbDotNet │ │ ├── Custom.cs │ │ ├── Descriptors │ │ │ ├── LangStringDescriptor.cs │ │ │ ├── UsbDescriptor.cs │ │ │ └── UsbMemChunk.cs │ │ ├── Generated │ │ │ ├── BosDescriptor.cs │ │ │ ├── BosDevCapabilityDescriptor.cs │ │ │ ├── BosType.cs │ │ │ ├── Capability.cs │ │ │ ├── ClassCode.cs │ │ │ ├── ConfigDescriptor.cs │ │ │ ├── ContainerIdDescriptor.cs │ │ │ ├── Context.ReleaseHandle.cs │ │ │ ├── Context.cs │ │ │ ├── ControlSetup.cs │ │ │ ├── DescriptorType.cs │ │ │ ├── Device.ReleaseHandle.cs │ │ │ ├── Device.cs │ │ │ ├── DeviceDescriptor.cs │ │ │ ├── DeviceHandle.ReleaseHandle.cs │ │ │ ├── DeviceHandle.cs │ │ │ ├── EndpointDescriptor.cs │ │ │ ├── EndpointDirection.cs │ │ │ ├── Error.cs │ │ │ ├── HotplugCallbackFn.cs │ │ │ ├── HotplugEvent.cs │ │ │ ├── HotplugFlag.cs │ │ │ ├── Interface.cs │ │ │ ├── InterfaceDescriptor.cs │ │ │ ├── IsoPacketDescriptor.cs │ │ │ ├── IsoSyncType.cs │ │ │ ├── IsoUsageType.cs │ │ │ ├── LogLevel.cs │ │ │ ├── NativeMethods.Unsafe.cs │ │ │ ├── NativeMethods.cs │ │ │ ├── Pollfd.cs │ │ │ ├── PollfdAddedDelegate.cs │ │ │ ├── PollfdRemovedDelegate.cs │ │ │ ├── RequestRecipient.cs │ │ │ ├── RequestType.cs │ │ │ ├── Speed.cs │ │ │ ├── SsEndpointCompanionDescriptor.cs │ │ │ ├── SsUsbDeviceCapabilityAttributes.cs │ │ │ ├── SsUsbDeviceCapabilityDescriptor.cs │ │ │ ├── StandardRequest.cs │ │ │ ├── SupportedSpeed.cs │ │ │ ├── Transfer.cs │ │ │ ├── TransferDelegate.cs │ │ │ ├── TransferFlags.cs │ │ │ ├── TransferStatus.cs │ │ │ ├── TransferType.cs │ │ │ ├── Usb20ExtensionAttributes.cs │ │ │ ├── Usb20ExtensionDescriptor.cs │ │ │ └── Version.cs │ │ ├── Info │ │ │ ├── UsbBaseInfo.cs │ │ │ ├── UsbConfigInfo.cs │ │ │ ├── UsbDeviceInfo.cs │ │ │ ├── UsbEndpointInfo.cs │ │ │ └── UsbInterfaceInfo.cs │ │ ├── LibUsb │ │ │ ├── AsyncTransfer.cs │ │ │ ├── ErrorExtensions.cs │ │ │ ├── IUsbContext.cs │ │ │ ├── IUsbDevice.cs │ │ │ ├── NativeLibraryVersion.cs │ │ │ ├── UnixNativeTimeval.cs │ │ │ ├── UsbContext.cs │ │ │ ├── UsbDevice.Device.cs │ │ │ ├── UsbDevice.DeviceHandle.Async.cs │ │ │ ├── UsbDevice.DeviceHandle.cs │ │ │ ├── UsbDevice.Endpoints.cs │ │ │ ├── UsbDevice.Interfaces.cs │ │ │ ├── UsbDevice.KernelDriver.cs │ │ │ ├── UsbDevice.cs │ │ │ ├── UsbDeviceCollection.cs │ │ │ ├── UsbEndpointBase.cs │ │ │ ├── UsbEndpointReader.Async.cs │ │ │ ├── UsbEndpointReader.cs │ │ │ ├── UsbEndpointWriter.Async.cs │ │ │ ├── UsbEndpointWriter.cs │ │ │ └── UsbException.cs │ │ └── Main │ │ │ ├── EndpointType.cs │ │ │ ├── Helper.cs │ │ │ ├── PinnedHandle.cs │ │ │ ├── ReadEndpointID.cs │ │ │ ├── SafeContextHandle.cs │ │ │ ├── UsbConstants.cs │ │ │ ├── UsbCtrlFlags.cs │ │ │ ├── UsbDeviceFinder.cs │ │ │ ├── UsbRequestRecipient.cs │ │ │ ├── UsbRequestType.cs │ │ │ ├── UsbSetupPacket.cs │ │ │ ├── UsbStream.cs │ │ │ └── WriteEndpointID.cs │ ├── SDL2-CS-master │ │ ├── SDL2-CS.csproj │ │ └── src │ │ │ ├── SDL2.cs │ │ │ ├── SDL2_gfx.cs │ │ │ ├── SDL2_image.cs │ │ │ ├── SDL2_mixer.cs │ │ │ └── SDL2_ttf.cs │ └── readme.md └── release_version.txt ├── LICENSE ├── ReleaseSysmodule.sh ├── SysDVR.sln ├── SysDVRConfig ├── Makefile ├── SysDVR-conf.vcxproj ├── SysDVR-conf.vcxproj.filters ├── fonts │ ├── NotoSansSC-Regular.ttf │ ├── NotoSansTC-Regular.ttf │ └── opensans.ttf ├── icon.jpg ├── prunefonts.py ├── romfs │ ├── ModeRtsp.png │ ├── ModeTcp.png │ ├── ModeUsb.png │ ├── font.dat │ ├── fonts │ │ ├── NotoSansSC-Regular.ttf │ │ ├── NotoSansTC-Regular.ttf │ │ └── opensans.ttf │ ├── guide.png │ ├── logo.png │ ├── strings │ │ ├── brazilianPortuguese.json │ │ ├── english.json │ │ ├── french.json │ │ ├── italian.json │ │ ├── portuguese.json │ │ ├── simplifiedChinese.json │ │ ├── spanish.json │ │ └── traditionalChinese.json │ └── troubleshooting.png └── source │ ├── Libs │ ├── nlohmann │ │ └── json.hpp │ └── zip │ │ ├── miniz.h │ │ ├── zip.c │ │ └── zip.h │ ├── Platform │ ├── Platform.hpp │ ├── PlatformFs.hpp │ ├── PlatformSwitch.cpp │ ├── PlatformWin.cpp │ ├── Windows │ │ ├── dirent.c │ │ └── dirent.h │ ├── fs.cpp │ └── fs.hpp │ ├── Scenes │ ├── Common.hpp │ ├── SceneGuide.cpp │ ├── SceneMain.cpp │ ├── SceneNoConnection.cpp │ ├── ScenePatches.cpp │ └── Scenes.hpp │ ├── UI │ ├── Image.cpp │ ├── Image.hpp │ ├── UI.cpp │ ├── UI.hpp │ ├── glad.c │ ├── glad.h │ ├── imgui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── imgui_internal.h │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h │ └── stb_image.h │ ├── ipc.c │ ├── ipc.h │ ├── main.cpp │ ├── translaton.cpp │ └── translaton.hpp ├── protocol.md ├── readme.md └── sysmodule ├── Makefile ├── cpp.nx.hint ├── source ├── USB │ ├── Serial.c │ ├── Serial.h │ ├── UsbComms.c │ └── UsbComms.h ├── capture.c ├── capture.h ├── core.c ├── core.h ├── grcd.c ├── grcd.h ├── ipc │ ├── ipc.c │ └── ipc.h ├── modes │ ├── RTSPmode.c │ ├── TCPmode.c │ ├── USBmode.c │ ├── defines.h │ ├── modes.h │ ├── proto.c │ └── proto.h ├── net │ ├── sockets.c │ └── sockets.h ├── rtsp │ ├── H264Packetizer.h │ ├── LE16Packetizer.h │ ├── RTP.h │ ├── RTSP.c │ └── RTSP.h ├── sysmodule │ └── main.c ├── third_party │ ├── nanoprintf.c │ └── nanoprintf.h ├── util.c └── util.h ├── sys-VStream.vcxproj ├── sys-VStream.vcxproj.filters ├── sysmodule.json ├── toolbox.json └── toolbox.usb.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/ISSUE_TEMPLATE/help-request.md -------------------------------------------------------------------------------- /.github/images/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/images/Screenshot.jpg -------------------------------------------------------------------------------- /.github/images/guide_dotnet_m1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/images/guide_dotnet_m1.jpg -------------------------------------------------------------------------------- /.github/workflows/StaleIssues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/workflows/StaleIssues.yml -------------------------------------------------------------------------------- /.github/workflows/client-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/workflows/client-android.yml -------------------------------------------------------------------------------- /.github/workflows/client-cross.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/workflows/client-cross.yml -------------------------------------------------------------------------------- /.github/workflows/client-linux-x64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/workflows/client-linux-x64.yml -------------------------------------------------------------------------------- /.github/workflows/client-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/workflows/client-macos.yml -------------------------------------------------------------------------------- /.github/workflows/client-windows-x64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/workflows/client-windows-x64.yml -------------------------------------------------------------------------------- /.github/workflows/sysmodule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.github/workflows/sysmodule.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/.gitignore -------------------------------------------------------------------------------- /Client/BaseStandaloneClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/BaseStandaloneClient.cs -------------------------------------------------------------------------------- /Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Client.csproj -------------------------------------------------------------------------------- /Client/Client.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Client.ico -------------------------------------------------------------------------------- /Client/ClientApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ClientApp.cs -------------------------------------------------------------------------------- /Client/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/CommandLineOptions.cs -------------------------------------------------------------------------------- /Client/Core/DebugHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Core/DebugHelpers.cs -------------------------------------------------------------------------------- /Client/Core/DebugOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Core/DebugOptions.cs -------------------------------------------------------------------------------- /Client/Core/DisposableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Core/DisposableCollection.cs -------------------------------------------------------------------------------- /Client/Core/ErrorCodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Core/ErrorCodeExtensions.cs -------------------------------------------------------------------------------- /Client/Core/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Core/Native.cs -------------------------------------------------------------------------------- /Client/Core/NativeLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Core/NativeLogger.cs -------------------------------------------------------------------------------- /Client/Core/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Core/Options.cs -------------------------------------------------------------------------------- /Client/Core/StreamInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Core/StreamInfo.cs -------------------------------------------------------------------------------- /Client/Core/StreamManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Core/StreamManager.cs -------------------------------------------------------------------------------- /Client/Core/StringTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Core/StringTable.cs -------------------------------------------------------------------------------- /Client/GUI/Components/FramerateCap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/GUI/Components/FramerateCap.cs -------------------------------------------------------------------------------- /Client/GUI/Components/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/GUI/Components/Image.cs -------------------------------------------------------------------------------- /Client/GUI/Components/SDLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/GUI/Components/SDLContext.cs -------------------------------------------------------------------------------- /Client/GUI/ConnectingView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/GUI/ConnectingView.cs -------------------------------------------------------------------------------- /Client/GUI/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/GUI/Interfaces.cs -------------------------------------------------------------------------------- /Client/GUI/MainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/GUI/MainView.cs -------------------------------------------------------------------------------- /Client/GUI/NetworkScanView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/GUI/NetworkScanView.cs -------------------------------------------------------------------------------- /Client/GUI/OptionsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/GUI/OptionsView.cs -------------------------------------------------------------------------------- /Client/GUI/PlayerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/GUI/PlayerView.cs -------------------------------------------------------------------------------- /Client/GUI/UsbDevicesView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/GUI/UsbDevicesView.cs -------------------------------------------------------------------------------- /Client/LegacyPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/LegacyPlayer.cs -------------------------------------------------------------------------------- /Client/Platform/Android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/.gitignore -------------------------------------------------------------------------------- /Client/Platform/Android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/build.gradle -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/jni/Application.mk -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/jni/CMakeLists.txt -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/SDL/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/jni/SDL/Android.mk -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/SysDVR-Client/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/jni/SysDVR-Client/Android.mk -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/cimgui/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/jni/cimgui/Android.mk -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/src/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/jni/src/Android.mk -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/src/JniHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/jni/src/JniHelper.h -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/jni/src/main.c -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/src/native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/jni/src/native.c -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/jni/src/thread.c -------------------------------------------------------------------------------- /Client/Platform/Android/app/jni/src/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/jni/src/usb.c -------------------------------------------------------------------------------- /Client/Platform/Android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/exelix11/sysdvr/DvrUsbHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/exelix11/sysdvr/DvrUsbHelper.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/exelix11/sysdvr/SystemHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/exelix11/sysdvr/SystemHelper.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/exelix11/sysdvr/sysdvrActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/exelix11/sysdvr/sysdvrActivity.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/org/libsdl/app/HIDDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/org/libsdl/app/HIDDevice.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/org/libsdl/app/HIDDeviceBLESteamController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/org/libsdl/app/HIDDeviceBLESteamController.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/org/libsdl/app/HIDDeviceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/org/libsdl/app/HIDDeviceManager.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/org/libsdl/app/SDL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/org/libsdl/app/SDL.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/org/libsdl/app/SDLActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/org/libsdl/app/SDLActivity.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/org/libsdl/app/SDLAudioManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/org/libsdl/app/SDLAudioManager.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/org/libsdl/app/SDLControllerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/org/libsdl/app/SDLControllerManager.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/java/org/libsdl/app/SDLSurface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/java/org/libsdl/app/SDLSurface.java -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/drawable-v24/ic_banner_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/drawable-v24/ic_banner_foreground.xml -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-anydpi-v26/ic_banner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-anydpi-v26/ic_banner.xml -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-xhdpi/ic_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-xhdpi/ic_banner.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-xhdpi/ic_banner_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-xhdpi/ic_banner_foreground.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/values/ic_banner_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/values/ic_banner_background.xml -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Client/Platform/Android/app/src/main/res/xml/usbdevices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/app/src/main/res/xml/usbdevices.xml -------------------------------------------------------------------------------- /Client/Platform/Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/build.gradle -------------------------------------------------------------------------------- /Client/Platform/Android/buildbinaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/buildbinaries.sh -------------------------------------------------------------------------------- /Client/Platform/Android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/gradle.properties -------------------------------------------------------------------------------- /Client/Platform/Android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Client/Platform/Android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Client/Platform/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/gradlew -------------------------------------------------------------------------------- /Client/Platform/Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/gradlew.bat -------------------------------------------------------------------------------- /Client/Platform/Android/patches/SDL_android.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/patches/SDL_android.c.patch -------------------------------------------------------------------------------- /Client/Platform/Android/patches/libusb_Android.mk: -------------------------------------------------------------------------------- 1 | include $(call my-dir)/android/jni/libusb.mk -------------------------------------------------------------------------------- /Client/Platform/Android/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Android/readme.md -------------------------------------------------------------------------------- /Client/Platform/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Client/Platform/BuildMacos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/BuildMacos.sh -------------------------------------------------------------------------------- /Client/Platform/BuildWindows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/BuildWindows.bat -------------------------------------------------------------------------------- /Client/Platform/DynamicLibraryLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/DynamicLibraryLoader.cs -------------------------------------------------------------------------------- /Client/Platform/Linux/build-flatpak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Linux/build-flatpak.sh -------------------------------------------------------------------------------- /Client/Platform/Linux/com.github.exelix11.sysdvr.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Linux/com.github.exelix11.sysdvr.desktop -------------------------------------------------------------------------------- /Client/Platform/Linux/com.github.exelix11.sysdvr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Linux/com.github.exelix11.sysdvr.json -------------------------------------------------------------------------------- /Client/Platform/Linux/flatpak_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Linux/flatpak_icon.png -------------------------------------------------------------------------------- /Client/Platform/Linux/sysdvr.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Linux/sysdvr.rules -------------------------------------------------------------------------------- /Client/Platform/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources.cs -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/fonts/NotoSansSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/fonts/NotoSansSC-Regular.ttf -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/fonts/NotoSansTC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/fonts/NotoSansTC-Regular.ttf -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/ico_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/ico_usb.png -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/ico_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/ico_wifi.png -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/loading.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/loading.yuv -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/logo.png -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/strings/Italian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/strings/Italian.json -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/strings/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/strings/english.json -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/strings/french.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/strings/french.json -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/strings/german.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/strings/german.json -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/strings/polish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/strings/polish.json -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/strings/portuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/strings/portuguese.json -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/strings/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/strings/pt-BR.json -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/strings/spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/strings/spanish.json -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/strings/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/strings/zh-CN.json -------------------------------------------------------------------------------- /Client/Platform/Resources/resources/strings/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Resources/resources/strings/zh-TW.json -------------------------------------------------------------------------------- /Client/Platform/Specific.Win/WinAntiInject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Specific.Win/WinAntiInject.cs -------------------------------------------------------------------------------- /Client/Platform/Specific.Win/WinClipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Specific.Win/WinClipboard.cs -------------------------------------------------------------------------------- /Client/Platform/Specific.Win/WinDirverInstallView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Specific.Win/WinDirverInstallView.cs -------------------------------------------------------------------------------- /Client/Platform/Specific.Win/WinDriverInstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Specific.Win/WinDriverInstall.cs -------------------------------------------------------------------------------- /Client/Platform/Specific.Win/WinPinvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/Specific.Win/WinPinvoke.cs -------------------------------------------------------------------------------- /Client/Platform/SystemUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Platform/SystemUtil.cs -------------------------------------------------------------------------------- /Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Program.cs -------------------------------------------------------------------------------- /Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /Client/Sources/DeviceConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Sources/DeviceConnector.cs -------------------------------------------------------------------------------- /Client/Sources/NetworkScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Sources/NetworkScan.cs -------------------------------------------------------------------------------- /Client/Sources/PacketReplayTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Sources/PacketReplayTable.cs -------------------------------------------------------------------------------- /Client/Sources/Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Sources/Protocol.cs -------------------------------------------------------------------------------- /Client/Sources/RecordedSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Sources/RecordedSource.cs -------------------------------------------------------------------------------- /Client/Sources/StubSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Sources/StubSource.cs -------------------------------------------------------------------------------- /Client/Sources/TCPBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Sources/TCPBridge.cs -------------------------------------------------------------------------------- /Client/Sources/UsbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Sources/UsbContext.cs -------------------------------------------------------------------------------- /Client/Sources/UsbStreaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Sources/UsbStreaming.cs -------------------------------------------------------------------------------- /Client/Targets/FileOutput/LoggingTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Targets/FileOutput/LoggingTarget.cs -------------------------------------------------------------------------------- /Client/Targets/FileOutput/Mp4Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Targets/FileOutput/Mp4Output.cs -------------------------------------------------------------------------------- /Client/Targets/FileOutput/Mp4Streams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Targets/FileOutput/Mp4Streams.cs -------------------------------------------------------------------------------- /Client/Targets/H264Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Targets/H264Util.cs -------------------------------------------------------------------------------- /Client/Targets/Player/LibavUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Targets/Player/LibavUtils.cs -------------------------------------------------------------------------------- /Client/Targets/Player/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Targets/Player/Player.cs -------------------------------------------------------------------------------- /Client/Targets/Player/Streams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Targets/Player/Streams.cs -------------------------------------------------------------------------------- /Client/Targets/Player/SyncHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Targets/Player/SyncHelper.cs -------------------------------------------------------------------------------- /Client/Targets/SDLCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Targets/SDLCapture.cs -------------------------------------------------------------------------------- /Client/Targets/StubTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Targets/StubTarget.cs -------------------------------------------------------------------------------- /Client/Test/TestStubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/Test/TestStubClient.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/ConstCharPtrMarshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/ConstCharPtrMarshaler.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/FFmpeg.AutoGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/FFmpeg.AutoGen.csproj -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/FFmpeg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/FFmpeg.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/FunctionResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/FunctionResolver.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/IFixedArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/IFixedArray.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/IFunctionResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/IFunctionResolver.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/UTF8Marshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/UTF8Marshaler.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/generated/Arrays.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/generated/Arrays.g.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/generated/Delegates.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/generated/Delegates.g.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/generated/DynamicallyLoadedBindings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/generated/DynamicallyLoadedBindings.g.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/generated/Enums.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/generated/Enums.g.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/generated/Structs.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/generated/Structs.g.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/generated/ffmpeg.functions.facade.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/generated/ffmpeg.functions.facade.g.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/generated/ffmpeg.functions.inline.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/generated/ffmpeg.functions.inline.g.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/generated/ffmpeg.libraries.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/generated/ffmpeg.libraries.g.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/generated/ffmpeg.macros.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/generated/ffmpeg.macros.g.cs -------------------------------------------------------------------------------- /Client/ThirdParty/FFmpeg.AutoGen/generated/vectors.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/FFmpeg.AutoGen/generated/vectors.g.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Custom/Custom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Custom/Custom.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Delegates.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImColor.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImColor.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImDrawChannel.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImDrawChannel.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImDrawCmd.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImDrawCmd.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImDrawCmdHeader.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImDrawCmdHeader.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImDrawData.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImDrawData.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImDrawFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImDrawFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImDrawList.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImDrawList.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImDrawListFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImDrawListFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImDrawListSplitter.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImDrawListSplitter.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImDrawVert.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImDrawVert.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImFont.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImFont.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImFontAtlas.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImFontAtlas.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImFontAtlasCustomRect.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImFontAtlasCustomRect.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImFontAtlasFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImFontAtlasFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImFontConfig.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImFontConfig.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImFontGlyph.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImFontGlyph.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImFontGlyphRangesBuilder.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImFontGlyphRangesBuilder.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGui.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGui.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiBackendFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiBackendFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiButtonFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiButtonFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiCol.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiCol.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiColorEditFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiColorEditFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiComboFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiComboFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiCond.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiCond.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiConfigFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiConfigFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiDataType.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiDataType.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiDir.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiDir.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiDockNodeFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiDockNodeFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiDragDropFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiDragDropFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiFocusedFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiFocusedFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiHoveredFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiHoveredFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiIO.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiIO.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiInputTextCallbackData.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiInputTextCallbackData.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiInputTextFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiInputTextFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiKey.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiKey.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiKeyData.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiKeyData.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiListClipper.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiListClipper.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiModFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiModFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiMouseButton.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiMouseButton.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiMouseCursor.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiMouseCursor.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiMouseSource.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiMouseSource.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiNative.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiNative.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiNavInput.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiNavInput.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiOnceUponAFrame.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiOnceUponAFrame.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiPayload.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiPayload.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiPlatformIO.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiPlatformIO.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiPlatformImeData.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiPlatformImeData.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiPlatformMonitor.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiPlatformMonitor.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiPopupFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiPopupFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiSelectableFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiSelectableFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiSizeCallbackData.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiSizeCallbackData.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiSliderFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiSliderFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiSortDirection.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiSortDirection.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiStorage.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiStorage.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiStyle.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiStyle.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiStyleVar.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiStyleVar.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTabBarFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTabBarFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTabItemFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTabItemFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTableBgTarget.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTableBgTarget.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTableColumnFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTableColumnFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTableColumnSortSpecs.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTableColumnSortSpecs.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTableFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTableFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTableRowFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTableRowFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTableSortSpecs.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTableSortSpecs.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTextBuffer.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTextBuffer.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTextFilter.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTextFilter.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTextRange.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTextRange.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiTreeNodeFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiTreeNodeFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiViewport.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiViewport.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiViewportFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiViewportFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiWindowClass.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiWindowClass.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/ImGuiWindowFlags.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/ImGuiWindowFlags.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/STB_TexteditState.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/STB_TexteditState.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/StbTexteditRow.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/StbTexteditRow.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/StbUndoRecord.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/StbUndoRecord.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Generated/StbUndoState.gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Generated/StbUndoState.gen.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/ImDrawData.Manual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/ImDrawData.Manual.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/ImDrawList.Manual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/ImDrawList.Manual.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/ImGui.Manual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/ImGui.Manual.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/ImGui.NET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/ImGui.NET.csproj -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/ImGuiNative.Manual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/ImGuiNative.Manual.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/ImGuiSizeCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/ImGuiSizeCallback.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/ImGuiTextEditCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/ImGuiTextEditCallback.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/ImVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/ImVector.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/NullTerminatedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/NullTerminatedString.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Pair.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/RangeAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/RangeAccessor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/ImGui.NET/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/ImGui.NET/Util.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Custom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Custom.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Descriptors/LangStringDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Descriptors/LangStringDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Descriptors/UsbDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Descriptors/UsbDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Descriptors/UsbMemChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Descriptors/UsbMemChunk.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/BosDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/BosDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/BosDevCapabilityDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/BosDevCapabilityDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/BosType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/BosType.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Capability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Capability.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/ClassCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/ClassCode.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/ConfigDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/ConfigDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/ContainerIdDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/ContainerIdDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Context.ReleaseHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Context.ReleaseHandle.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Context.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/ControlSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/ControlSetup.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/DescriptorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/DescriptorType.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Device.ReleaseHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Device.ReleaseHandle.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Device.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/DeviceDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/DeviceDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/DeviceHandle.ReleaseHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/DeviceHandle.ReleaseHandle.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/DeviceHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/DeviceHandle.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/EndpointDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/EndpointDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/EndpointDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/EndpointDirection.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Error.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/HotplugCallbackFn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/HotplugCallbackFn.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/HotplugEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/HotplugEvent.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/HotplugFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/HotplugFlag.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Interface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Interface.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/InterfaceDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/InterfaceDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/IsoPacketDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/IsoPacketDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/IsoSyncType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/IsoSyncType.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/IsoUsageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/IsoUsageType.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/LogLevel.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/NativeMethods.Unsafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/NativeMethods.Unsafe.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/NativeMethods.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Pollfd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Pollfd.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/PollfdAddedDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/PollfdAddedDelegate.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/PollfdRemovedDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/PollfdRemovedDelegate.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/RequestRecipient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/RequestRecipient.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/RequestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/RequestType.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Speed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Speed.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/SsEndpointCompanionDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/SsEndpointCompanionDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/SsUsbDeviceCapabilityAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/SsUsbDeviceCapabilityAttributes.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/SsUsbDeviceCapabilityDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/SsUsbDeviceCapabilityDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/StandardRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/StandardRequest.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/SupportedSpeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/SupportedSpeed.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Transfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Transfer.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/TransferDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/TransferDelegate.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/TransferFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/TransferFlags.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/TransferStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/TransferStatus.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/TransferType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/TransferType.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Usb20ExtensionAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Usb20ExtensionAttributes.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Usb20ExtensionDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Usb20ExtensionDescriptor.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Generated/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Generated/Version.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Info/UsbBaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Info/UsbBaseInfo.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Info/UsbConfigInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Info/UsbConfigInfo.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Info/UsbDeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Info/UsbDeviceInfo.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Info/UsbEndpointInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Info/UsbEndpointInfo.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Info/UsbInterfaceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Info/UsbInterfaceInfo.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/AsyncTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/AsyncTransfer.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/ErrorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/ErrorExtensions.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/IUsbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/IUsbContext.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/IUsbDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/IUsbDevice.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/NativeLibraryVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/NativeLibraryVersion.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UnixNativeTimeval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UnixNativeTimeval.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbContext.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.Device.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.DeviceHandle.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.DeviceHandle.Async.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.DeviceHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.DeviceHandle.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.Endpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.Endpoints.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.Interfaces.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.KernelDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.KernelDriver.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDevice.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDeviceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbDeviceCollection.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbEndpointBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbEndpointBase.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbEndpointReader.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbEndpointReader.Async.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbEndpointReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbEndpointReader.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbEndpointWriter.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbEndpointWriter.Async.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbEndpointWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbEndpointWriter.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/LibUsb/UsbException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/LibUsb/UsbException.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/EndpointType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/EndpointType.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/Helper.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/PinnedHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/PinnedHandle.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/ReadEndpointID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/ReadEndpointID.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/SafeContextHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/SafeContextHandle.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/UsbConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/UsbConstants.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/UsbCtrlFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/UsbCtrlFlags.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/UsbDeviceFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/UsbDeviceFinder.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/UsbRequestRecipient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/UsbRequestRecipient.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/UsbRequestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/UsbRequestType.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/UsbSetupPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/UsbSetupPacket.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/UsbStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/UsbStream.cs -------------------------------------------------------------------------------- /Client/ThirdParty/LibUsbDotNet/Main/WriteEndpointID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/LibUsbDotNet/Main/WriteEndpointID.cs -------------------------------------------------------------------------------- /Client/ThirdParty/SDL2-CS-master/SDL2-CS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/SDL2-CS-master/SDL2-CS.csproj -------------------------------------------------------------------------------- /Client/ThirdParty/SDL2-CS-master/src/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/SDL2-CS-master/src/SDL2.cs -------------------------------------------------------------------------------- /Client/ThirdParty/SDL2-CS-master/src/SDL2_gfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/SDL2-CS-master/src/SDL2_gfx.cs -------------------------------------------------------------------------------- /Client/ThirdParty/SDL2-CS-master/src/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/SDL2-CS-master/src/SDL2_image.cs -------------------------------------------------------------------------------- /Client/ThirdParty/SDL2-CS-master/src/SDL2_mixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/SDL2-CS-master/src/SDL2_mixer.cs -------------------------------------------------------------------------------- /Client/ThirdParty/SDL2-CS-master/src/SDL2_ttf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/SDL2-CS-master/src/SDL2_ttf.cs -------------------------------------------------------------------------------- /Client/ThirdParty/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/Client/ThirdParty/readme.md -------------------------------------------------------------------------------- /Client/release_version.txt: -------------------------------------------------------------------------------- 1 | 6.2.2 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/LICENSE -------------------------------------------------------------------------------- /ReleaseSysmodule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/ReleaseSysmodule.sh -------------------------------------------------------------------------------- /SysDVR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVR.sln -------------------------------------------------------------------------------- /SysDVRConfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/Makefile -------------------------------------------------------------------------------- /SysDVRConfig/SysDVR-conf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/SysDVR-conf.vcxproj -------------------------------------------------------------------------------- /SysDVRConfig/SysDVR-conf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/SysDVR-conf.vcxproj.filters -------------------------------------------------------------------------------- /SysDVRConfig/fonts/NotoSansSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/fonts/NotoSansSC-Regular.ttf -------------------------------------------------------------------------------- /SysDVRConfig/fonts/NotoSansTC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/fonts/NotoSansTC-Regular.ttf -------------------------------------------------------------------------------- /SysDVRConfig/fonts/opensans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/fonts/opensans.ttf -------------------------------------------------------------------------------- /SysDVRConfig/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/icon.jpg -------------------------------------------------------------------------------- /SysDVRConfig/prunefonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/prunefonts.py -------------------------------------------------------------------------------- /SysDVRConfig/romfs/ModeRtsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/ModeRtsp.png -------------------------------------------------------------------------------- /SysDVRConfig/romfs/ModeTcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/ModeTcp.png -------------------------------------------------------------------------------- /SysDVRConfig/romfs/ModeUsb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/ModeUsb.png -------------------------------------------------------------------------------- /SysDVRConfig/romfs/font.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/font.dat -------------------------------------------------------------------------------- /SysDVRConfig/romfs/fonts/NotoSansSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/fonts/NotoSansSC-Regular.ttf -------------------------------------------------------------------------------- /SysDVRConfig/romfs/fonts/NotoSansTC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/fonts/NotoSansTC-Regular.ttf -------------------------------------------------------------------------------- /SysDVRConfig/romfs/fonts/opensans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/fonts/opensans.ttf -------------------------------------------------------------------------------- /SysDVRConfig/romfs/guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/guide.png -------------------------------------------------------------------------------- /SysDVRConfig/romfs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/logo.png -------------------------------------------------------------------------------- /SysDVRConfig/romfs/strings/brazilianPortuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/strings/brazilianPortuguese.json -------------------------------------------------------------------------------- /SysDVRConfig/romfs/strings/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/strings/english.json -------------------------------------------------------------------------------- /SysDVRConfig/romfs/strings/french.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/strings/french.json -------------------------------------------------------------------------------- /SysDVRConfig/romfs/strings/italian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/strings/italian.json -------------------------------------------------------------------------------- /SysDVRConfig/romfs/strings/portuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/strings/portuguese.json -------------------------------------------------------------------------------- /SysDVRConfig/romfs/strings/simplifiedChinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/strings/simplifiedChinese.json -------------------------------------------------------------------------------- /SysDVRConfig/romfs/strings/spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/strings/spanish.json -------------------------------------------------------------------------------- /SysDVRConfig/romfs/strings/traditionalChinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/strings/traditionalChinese.json -------------------------------------------------------------------------------- /SysDVRConfig/romfs/troubleshooting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/romfs/troubleshooting.png -------------------------------------------------------------------------------- /SysDVRConfig/source/Libs/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Libs/nlohmann/json.hpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Libs/zip/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Libs/zip/miniz.h -------------------------------------------------------------------------------- /SysDVRConfig/source/Libs/zip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Libs/zip/zip.c -------------------------------------------------------------------------------- /SysDVRConfig/source/Libs/zip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Libs/zip/zip.h -------------------------------------------------------------------------------- /SysDVRConfig/source/Platform/Platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Platform/Platform.hpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Platform/PlatformFs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Platform/PlatformFs.hpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Platform/PlatformSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Platform/PlatformSwitch.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Platform/PlatformWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Platform/PlatformWin.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Platform/Windows/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Platform/Windows/dirent.c -------------------------------------------------------------------------------- /SysDVRConfig/source/Platform/Windows/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Platform/Windows/dirent.h -------------------------------------------------------------------------------- /SysDVRConfig/source/Platform/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Platform/fs.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Platform/fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Platform/fs.hpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Scenes/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Scenes/Common.hpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Scenes/SceneGuide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Scenes/SceneGuide.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Scenes/SceneMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Scenes/SceneMain.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Scenes/SceneNoConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Scenes/SceneNoConnection.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Scenes/ScenePatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Scenes/ScenePatches.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/Scenes/Scenes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/Scenes/Scenes.hpp -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/Image.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/Image.hpp -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/UI.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/UI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/UI.hpp -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/glad.c -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/glad.h -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imconfig.h -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imgui.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imgui.h -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imgui_internal.h -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /SysDVRConfig/source/UI/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/UI/stb_image.h -------------------------------------------------------------------------------- /SysDVRConfig/source/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/ipc.c -------------------------------------------------------------------------------- /SysDVRConfig/source/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/ipc.h -------------------------------------------------------------------------------- /SysDVRConfig/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/main.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/translaton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/translaton.cpp -------------------------------------------------------------------------------- /SysDVRConfig/source/translaton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/SysDVRConfig/source/translaton.hpp -------------------------------------------------------------------------------- /protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/protocol.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/readme.md -------------------------------------------------------------------------------- /sysmodule/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/Makefile -------------------------------------------------------------------------------- /sysmodule/cpp.nx.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/cpp.nx.hint -------------------------------------------------------------------------------- /sysmodule/source/USB/Serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/USB/Serial.c -------------------------------------------------------------------------------- /sysmodule/source/USB/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/USB/Serial.h -------------------------------------------------------------------------------- /sysmodule/source/USB/UsbComms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/USB/UsbComms.c -------------------------------------------------------------------------------- /sysmodule/source/USB/UsbComms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/USB/UsbComms.h -------------------------------------------------------------------------------- /sysmodule/source/capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/capture.c -------------------------------------------------------------------------------- /sysmodule/source/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/capture.h -------------------------------------------------------------------------------- /sysmodule/source/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/core.c -------------------------------------------------------------------------------- /sysmodule/source/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/core.h -------------------------------------------------------------------------------- /sysmodule/source/grcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/grcd.c -------------------------------------------------------------------------------- /sysmodule/source/grcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/grcd.h -------------------------------------------------------------------------------- /sysmodule/source/ipc/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/ipc/ipc.c -------------------------------------------------------------------------------- /sysmodule/source/ipc/ipc.h: -------------------------------------------------------------------------------- 1 | #if !defined(USB_ONLY) 2 | #pragma once 3 | #include 4 | 5 | void IpcThread(); 6 | #endif -------------------------------------------------------------------------------- /sysmodule/source/modes/RTSPmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/modes/RTSPmode.c -------------------------------------------------------------------------------- /sysmodule/source/modes/TCPmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/modes/TCPmode.c -------------------------------------------------------------------------------- /sysmodule/source/modes/USBmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/modes/USBmode.c -------------------------------------------------------------------------------- /sysmodule/source/modes/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/modes/defines.h -------------------------------------------------------------------------------- /sysmodule/source/modes/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/modes/modes.h -------------------------------------------------------------------------------- /sysmodule/source/modes/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/modes/proto.c -------------------------------------------------------------------------------- /sysmodule/source/modes/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/modes/proto.h -------------------------------------------------------------------------------- /sysmodule/source/net/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/net/sockets.c -------------------------------------------------------------------------------- /sysmodule/source/net/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/net/sockets.h -------------------------------------------------------------------------------- /sysmodule/source/rtsp/H264Packetizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/rtsp/H264Packetizer.h -------------------------------------------------------------------------------- /sysmodule/source/rtsp/LE16Packetizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/rtsp/LE16Packetizer.h -------------------------------------------------------------------------------- /sysmodule/source/rtsp/RTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/rtsp/RTP.h -------------------------------------------------------------------------------- /sysmodule/source/rtsp/RTSP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/rtsp/RTSP.c -------------------------------------------------------------------------------- /sysmodule/source/rtsp/RTSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/rtsp/RTSP.h -------------------------------------------------------------------------------- /sysmodule/source/sysmodule/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/sysmodule/main.c -------------------------------------------------------------------------------- /sysmodule/source/third_party/nanoprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/third_party/nanoprintf.c -------------------------------------------------------------------------------- /sysmodule/source/third_party/nanoprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/third_party/nanoprintf.h -------------------------------------------------------------------------------- /sysmodule/source/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/util.c -------------------------------------------------------------------------------- /sysmodule/source/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/source/util.h -------------------------------------------------------------------------------- /sysmodule/sys-VStream.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/sys-VStream.vcxproj -------------------------------------------------------------------------------- /sysmodule/sys-VStream.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/sys-VStream.vcxproj.filters -------------------------------------------------------------------------------- /sysmodule/sysmodule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/sysmodule.json -------------------------------------------------------------------------------- /sysmodule/toolbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/toolbox.json -------------------------------------------------------------------------------- /sysmodule/toolbox.usb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelix11/SysDVR/HEAD/sysmodule/toolbox.usb.json --------------------------------------------------------------------------------