├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── Logo.yaml └── workflows │ └── latest.yml ├── .gitignore ├── LICENSE ├── README.md ├── Thirdparty └── TVTestPlugin.h ├── TvTestRPC.ini ├── TvTestRPC.sln ├── TvTestRPC.sln.DotSettings ├── TvTestRPC ├── Activity.h ├── Config.h ├── Exports.def ├── Logo.h ├── TvTestRPC.cpp ├── TvTestRPC.vcxproj ├── TvTestRPC.vcxproj.filters ├── TvtPlay.h ├── Utils.h ├── Version.h └── stdafx.h ├── renovate.json └── vcpkg.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Logo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/.github/ISSUE_TEMPLATE/Logo.yaml -------------------------------------------------------------------------------- /.github/workflows/latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/.github/workflows/latest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/README.md -------------------------------------------------------------------------------- /Thirdparty/TVTestPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/Thirdparty/TVTestPlugin.h -------------------------------------------------------------------------------- /TvTestRPC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC.ini -------------------------------------------------------------------------------- /TvTestRPC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC.sln -------------------------------------------------------------------------------- /TvTestRPC.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC.sln.DotSettings -------------------------------------------------------------------------------- /TvTestRPC/Activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC/Activity.h -------------------------------------------------------------------------------- /TvTestRPC/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC/Config.h -------------------------------------------------------------------------------- /TvTestRPC/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC/Exports.def -------------------------------------------------------------------------------- /TvTestRPC/Logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC/Logo.h -------------------------------------------------------------------------------- /TvTestRPC/TvTestRPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC/TvTestRPC.cpp -------------------------------------------------------------------------------- /TvTestRPC/TvTestRPC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC/TvTestRPC.vcxproj -------------------------------------------------------------------------------- /TvTestRPC/TvTestRPC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC/TvTestRPC.vcxproj.filters -------------------------------------------------------------------------------- /TvTestRPC/TvtPlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC/TvtPlay.h -------------------------------------------------------------------------------- /TvTestRPC/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC/Utils.h -------------------------------------------------------------------------------- /TvTestRPC/Version.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | constexpr auto TvTestRPCVersion = "2.5.0"; 4 | -------------------------------------------------------------------------------- /TvTestRPC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/TvTestRPC/stdafx.h -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/renovate.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TvTestRPC/HEAD/vcpkg.json --------------------------------------------------------------------------------