├── .clang-format ├── .editorconfig ├── .github └── workflows │ └── documentation.yml ├── .gitignore ├── Doxyfile ├── LICENSE ├── README.md └── include ├── cvst ├── vst.h └── vst.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xaymar/vst2sdk/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xaymar/vst2sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xaymar/vst2sdk/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /docs 2 | /build -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xaymar/vst2sdk/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xaymar/vst2sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xaymar/vst2sdk/HEAD/README.md -------------------------------------------------------------------------------- /include/cvst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xaymar/vst2sdk/HEAD/include/cvst -------------------------------------------------------------------------------- /include/vst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xaymar/vst2sdk/HEAD/include/vst.h -------------------------------------------------------------------------------- /include/vst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xaymar/vst2sdk/HEAD/include/vst.hpp --------------------------------------------------------------------------------