Example #1
0
func (this *Port) GetConnectionCount() int {
	return int(C.jack_port_connected(this.jackPort))
}
Example #2
0
func (this *Port) IsConnected() bool {
	return C.jack_port_connected(this.jackPort) != 0
}