├── .github └── workflows │ ├── build-cpp.yml │ └── build-rust.yml ├── .gitignore ├── .gitmodules ├── AnnictRecorder.ini ├── AnnictRecorder ├── AnnictApi.h ├── AnnictRecorder.h ├── AnnictRecorder.vcxproj ├── AnnictRecorder.vcxproj.filters ├── ArmApi.h ├── Capture.h ├── Common.h ├── Config.h ├── Debug.h ├── Exports.def ├── Plugin.cpp ├── SayaApi.h ├── SyoboCalApi.h ├── Title.h ├── TvtPlay.h ├── Utils.h └── pch.h ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── TVTestAnnictRecorder.sln ├── TVTestAnnictRecorder.sln.DotSettings ├── Thirdparty └── TVTestPlugin.h ├── renovate.json ├── src └── lib.rs └── vcpkg.json /.github/workflows/build-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/.github/workflows/build-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/build-rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/.github/workflows/build-rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/.gitmodules -------------------------------------------------------------------------------- /AnnictRecorder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder.ini -------------------------------------------------------------------------------- /AnnictRecorder/AnnictApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/AnnictApi.h -------------------------------------------------------------------------------- /AnnictRecorder/AnnictRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/AnnictRecorder.h -------------------------------------------------------------------------------- /AnnictRecorder/AnnictRecorder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/AnnictRecorder.vcxproj -------------------------------------------------------------------------------- /AnnictRecorder/AnnictRecorder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/AnnictRecorder.vcxproj.filters -------------------------------------------------------------------------------- /AnnictRecorder/ArmApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/ArmApi.h -------------------------------------------------------------------------------- /AnnictRecorder/Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/Capture.h -------------------------------------------------------------------------------- /AnnictRecorder/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/Common.h -------------------------------------------------------------------------------- /AnnictRecorder/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/Config.h -------------------------------------------------------------------------------- /AnnictRecorder/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/Debug.h -------------------------------------------------------------------------------- /AnnictRecorder/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/Exports.def -------------------------------------------------------------------------------- /AnnictRecorder/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/Plugin.cpp -------------------------------------------------------------------------------- /AnnictRecorder/SayaApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/SayaApi.h -------------------------------------------------------------------------------- /AnnictRecorder/SyoboCalApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/SyoboCalApi.h -------------------------------------------------------------------------------- /AnnictRecorder/Title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/Title.h -------------------------------------------------------------------------------- /AnnictRecorder/TvtPlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/TvtPlay.h -------------------------------------------------------------------------------- /AnnictRecorder/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/Utils.h -------------------------------------------------------------------------------- /AnnictRecorder/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/AnnictRecorder/pch.h -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/README.md -------------------------------------------------------------------------------- /TVTestAnnictRecorder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/TVTestAnnictRecorder.sln -------------------------------------------------------------------------------- /TVTestAnnictRecorder.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/TVTestAnnictRecorder.sln.DotSettings -------------------------------------------------------------------------------- /Thirdparty/TVTestPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/Thirdparty/TVTestPlugin.h -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/renovate.json -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/src/lib.rs -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlashNephy/TVTestAnnictRecorder/HEAD/vcpkg.json --------------------------------------------------------------------------------