├── .gitignore ├── G-Key_ReadMe.odt ├── LICENSE.md ├── README.md ├── channel.cpp ├── channel.h ├── g-key.sln ├── g-key.vcxproj ├── g-key.vcxproj.filters ├── gkey_functions.cpp ├── gkey_functions.h ├── include ├── clientlib_publicdefinitions.h ├── plugin_definitions.h ├── public_definitions.h ├── public_errors.h ├── public_errors_rare.h ├── public_rare_definitions.h └── ts3_functions.h ├── package.ini ├── plugin.cpp ├── plugin.h ├── shell.c ├── sqlite3.c ├── sqlite3.h ├── sqlite3ext.h ├── ts3_settings.cpp └── ts3_settings.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/.gitignore -------------------------------------------------------------------------------- /G-Key_ReadMe.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/G-Key_ReadMe.odt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/README.md -------------------------------------------------------------------------------- /channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/channel.cpp -------------------------------------------------------------------------------- /channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/channel.h -------------------------------------------------------------------------------- /g-key.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/g-key.sln -------------------------------------------------------------------------------- /g-key.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/g-key.vcxproj -------------------------------------------------------------------------------- /g-key.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/g-key.vcxproj.filters -------------------------------------------------------------------------------- /gkey_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/gkey_functions.cpp -------------------------------------------------------------------------------- /gkey_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/gkey_functions.h -------------------------------------------------------------------------------- /include/clientlib_publicdefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/include/clientlib_publicdefinitions.h -------------------------------------------------------------------------------- /include/plugin_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/include/plugin_definitions.h -------------------------------------------------------------------------------- /include/public_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/include/public_definitions.h -------------------------------------------------------------------------------- /include/public_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/include/public_errors.h -------------------------------------------------------------------------------- /include/public_errors_rare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/include/public_errors_rare.h -------------------------------------------------------------------------------- /include/public_rare_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/include/public_rare_definitions.h -------------------------------------------------------------------------------- /include/ts3_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/include/ts3_functions.h -------------------------------------------------------------------------------- /package.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/package.ini -------------------------------------------------------------------------------- /plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/plugin.cpp -------------------------------------------------------------------------------- /plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/plugin.h -------------------------------------------------------------------------------- /shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/shell.c -------------------------------------------------------------------------------- /sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/sqlite3.c -------------------------------------------------------------------------------- /sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/sqlite3.h -------------------------------------------------------------------------------- /sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/sqlite3ext.h -------------------------------------------------------------------------------- /ts3_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/ts3_settings.cpp -------------------------------------------------------------------------------- /ts3_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossVR/g-key/HEAD/ts3_settings.h --------------------------------------------------------------------------------