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

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

	return C.GoString(cs)
}
Esempio n. 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)))
}
Esempio n. 3
0
func KeycodeToName(keycode int32) string {
	return C.GoString(C.al_keycode_to_name(C.int(keycode)))
}