| 33 | const int MaxKeyNameLength = 16; |
| 34 | char KeyNameTable[GLFW_KEY_LAST+1][MaxKeyNameLength]; |
| 35 | struct TableInitializer { TableInitializer() { InitKeyNameTables(); } }; TableInitializer Initializer; |
| 36 | |
| 37 | // Do not specify the size here so that we can static assert that the size matches the operations enum. |
| 38 | extern const char* OperationDescriptions[]; |
nothing calls this directly
no outgoing calls
no test coverage detected