コード例 #1
0
ファイル: instance.go プロジェクト: egelmex/go-vlc
// Wait waits until an interface causes the instance to exit.
// You should start at least one interface first, using Instance.StartUI().
func (this *Instance) Wait() error {
	if this.ptr == nil {
		return os.EINVAL
	}

	C.libvlc_wait(this.ptr)
	return nil
}
コード例 #2
0
ファイル: instance.go プロジェクト: henrym/go-vlc
// Wait waits until an interface causes the instance to exit.
// You should start at least one interface first, using Instance.StartUI().
func (this *Instance) Wait() error {
	if this.ptr == nil {
		return &VLCError{"Instance is nil"}
	}

	C.libvlc_wait(this.ptr)
	return nil
}