├── .gitignore ├── Makefile ├── README.md ├── changelog ├── include ├── common.c └── common.h ├── license.txt ├── man └── hcxkeys.1 ├── wlangenpmk.c └── wlangenpmkocl.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxkeys/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxkeys/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxkeys/HEAD/README.md -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxkeys/HEAD/changelog -------------------------------------------------------------------------------- /include/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxkeys/HEAD/include/common.c -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxkeys/HEAD/include/common.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxkeys/HEAD/license.txt -------------------------------------------------------------------------------- /man/hcxkeys.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxkeys/HEAD/man/hcxkeys.1 -------------------------------------------------------------------------------- /wlangenpmk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxkeys/HEAD/wlangenpmk.c -------------------------------------------------------------------------------- /wlangenpmkocl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxkeys/HEAD/wlangenpmkocl.c --------------------------------------------------------------------------------