├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── LICENSE ├── Makefile ├── README.md ├── source ├── main.cpp ├── mp3.c ├── mp3.h ├── util.c └── util.h └── sys-audioplayer.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/sys-audioplayer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/sys-audioplayer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/sys-audioplayer/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/sys-audioplayer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/sys-audioplayer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/sys-audioplayer/HEAD/README.md -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/sys-audioplayer/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/sys-audioplayer/HEAD/source/mp3.c -------------------------------------------------------------------------------- /source/mp3.h: -------------------------------------------------------------------------------- 1 | extern "C" 2 | { 3 | void playMp3(char* file); 4 | } 5 | -------------------------------------------------------------------------------- /source/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/sys-audioplayer/HEAD/source/util.c -------------------------------------------------------------------------------- /source/util.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void fatalLater(Result err); 4 | -------------------------------------------------------------------------------- /sys-audioplayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/sys-audioplayer/HEAD/sys-audioplayer.json --------------------------------------------------------------------------------