Example #1
0
func HapticName(index int) string {
	return (C.GoString)(C.SDL_HapticName(C.int(index)))
}
Example #2
0
func HapticName(device_index int) string {
	_device_index := (C.int)(device_index)
	return (C.GoString)(C.SDL_HapticName(_device_index))
}