├── Makefile ├── readme.txt ├── sce_sys ├── icon0.png └── livearea │ └── contents │ ├── startup.png │ └── template.xml └── src ├── configs.c ├── controle.c ├── draw.c ├── draw.h ├── font_data.c ├── header.h ├── main.c ├── plugins.c ├── ui.c └── utils.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/Makefile -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/readme.txt -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/sce_sys/icon0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /src/configs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/src/configs.c -------------------------------------------------------------------------------- /src/controle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/src/controle.c -------------------------------------------------------------------------------- /src/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/src/draw.c -------------------------------------------------------------------------------- /src/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/src/draw.h -------------------------------------------------------------------------------- /src/font_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/src/font_data.c -------------------------------------------------------------------------------- /src/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/src/header.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/src/main.c -------------------------------------------------------------------------------- /src/plugins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/src/plugins.c -------------------------------------------------------------------------------- /src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/src/ui.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeoLTK/VITAPluginsManager/HEAD/src/utils.h --------------------------------------------------------------------------------