Example #1
0
func KeycodeToName(keycode int) string {
	var cs *C.char

	cs = C.al_keycode_to_name(C.int(keycode))

	return C.GoString(cs)
}
Example #2
0
// Gets the name of te given keucode as a string.
func KeycodeToName(keycode int) string {
	return gostr(C.al_keycode_to_name(C.int(keycode)))
}
Example #3
0
func KeycodeToName(keycode int32) string {
	return C.GoString(C.al_keycode_to_name(C.int(keycode)))
}