├── .github ├── FUNDING.yml └── workflows │ └── autobuild-workflow.yaml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md └── audacious-plugin-rpc.cc /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darktohka/audacious-plugin-rpc/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/autobuild-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darktohka/audacious-plugin-rpc/HEAD/.github/workflows/autobuild-workflow.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darktohka/audacious-plugin-rpc/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darktohka/audacious-plugin-rpc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darktohka/audacious-plugin-rpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darktohka/audacious-plugin-rpc/HEAD/README.md -------------------------------------------------------------------------------- /audacious-plugin-rpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darktohka/audacious-plugin-rpc/HEAD/audacious-plugin-rpc.cc --------------------------------------------------------------------------------