├── .github └── workflows │ └── build.yml ├── .gitignore ├── HCADecoder README.md ├── LICENSE ├── README.md ├── cri2wav.sln └── src ├── clHCA.cpp ├── clHCA.h ├── cri2wav.vcxproj ├── cri2wav.vcxproj.user ├── format.dll ├── main.cpp └── vgmtutil.dll /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/.gitignore -------------------------------------------------------------------------------- /HCADecoder README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/HCADecoder README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/README.md -------------------------------------------------------------------------------- /cri2wav.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/cri2wav.sln -------------------------------------------------------------------------------- /src/clHCA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/src/clHCA.cpp -------------------------------------------------------------------------------- /src/clHCA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/src/clHCA.h -------------------------------------------------------------------------------- /src/cri2wav.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/src/cri2wav.vcxproj -------------------------------------------------------------------------------- /src/cri2wav.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/src/cri2wav.vcxproj.user -------------------------------------------------------------------------------- /src/format.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/src/format.dll -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/vgmtutil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyfair/cri2wav/HEAD/src/vgmtutil.dll --------------------------------------------------------------------------------