├── LICENSE ├── Makefile ├── README.md ├── icon0.png ├── ime_dialog.c ├── ime_dialog.h ├── main.c ├── main.h ├── reggen ├── b.py └── gen.sh ├── regs.c └── regs.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnoname120/RegistryEditorMOD/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnoname120/RegistryEditorMOD/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnoname120/RegistryEditorMOD/HEAD/README.md -------------------------------------------------------------------------------- /icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnoname120/RegistryEditorMOD/HEAD/icon0.png -------------------------------------------------------------------------------- /ime_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnoname120/RegistryEditorMOD/HEAD/ime_dialog.c -------------------------------------------------------------------------------- /ime_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnoname120/RegistryEditorMOD/HEAD/ime_dialog.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnoname120/RegistryEditorMOD/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnoname120/RegistryEditorMOD/HEAD/main.h -------------------------------------------------------------------------------- /reggen/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnoname120/RegistryEditorMOD/HEAD/reggen/b.py -------------------------------------------------------------------------------- /reggen/gen.sh: -------------------------------------------------------------------------------- 1 | python3 b.py | sort > regs.c -------------------------------------------------------------------------------- /regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnoname120/RegistryEditorMOD/HEAD/regs.c -------------------------------------------------------------------------------- /regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnoname120/RegistryEditorMOD/HEAD/regs.h --------------------------------------------------------------------------------