├── CMakeLists.txt ├── LICENSE ├── README.md ├── app ├── font.c ├── graphics.c ├── graphics.h └── main.c ├── pc └── mbrtool.c ├── plugin ├── imcunlock.c ├── imcunlock.h ├── imcunlock.yml ├── logging.h ├── tai_compat.c └── tai_compat.h ├── res ├── bg.png ├── icon0.png └── template.xml └── ss ├── fmenu.jpg ├── installer.jpg └── sysinfo.jpg /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/README.md -------------------------------------------------------------------------------- /app/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/app/font.c -------------------------------------------------------------------------------- /app/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/app/graphics.c -------------------------------------------------------------------------------- /app/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/app/graphics.h -------------------------------------------------------------------------------- /app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/app/main.c -------------------------------------------------------------------------------- /pc/mbrtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/pc/mbrtool.c -------------------------------------------------------------------------------- /plugin/imcunlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/plugin/imcunlock.c -------------------------------------------------------------------------------- /plugin/imcunlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/plugin/imcunlock.h -------------------------------------------------------------------------------- /plugin/imcunlock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/plugin/imcunlock.yml -------------------------------------------------------------------------------- /plugin/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/plugin/logging.h -------------------------------------------------------------------------------- /plugin/tai_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/plugin/tai_compat.c -------------------------------------------------------------------------------- /plugin/tai_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/plugin/tai_compat.h -------------------------------------------------------------------------------- /res/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/res/bg.png -------------------------------------------------------------------------------- /res/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/res/icon0.png -------------------------------------------------------------------------------- /res/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/res/template.xml -------------------------------------------------------------------------------- /ss/fmenu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/ss/fmenu.jpg -------------------------------------------------------------------------------- /ss/installer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/ss/installer.jpg -------------------------------------------------------------------------------- /ss/sysinfo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/IMCUnlock/HEAD/ss/sysinfo.jpg --------------------------------------------------------------------------------