Ejemplo n.º 1
0
func SetMouseWZ(w, z int) bool {
	var b bool

	b = bool(C.al_set_mouse_w(C.int(w))) && bool(C.al_set_mouse_z(C.int(z)))

	return b
}
Ejemplo n.º 2
0
func SetMouseW(w int32) bool {
	return bool(C.al_set_mouse_w(C.int(w)))
}