func KeycodeToName(keycode int) string { var cs *C.char cs = C.al_keycode_to_name(C.int(keycode)) return C.GoString(cs) }
// 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))) }
func KeycodeToName(keycode int32) string { return C.GoString(C.al_keycode_to_name(C.int(keycode))) }