コード例 #1
0
ファイル: listplayer.go プロジェクト: egelmex/go-vlc
// Play plays the entries in the media list.
func (this *ListPlayer) Play() error {
	if this.ptr == nil {
		return os.EINVAL
	}

	C.libvlc_media_list_player_play(this.ptr)
	return checkError()
}
コード例 #2
0
ファイル: listplayer.go プロジェクト: henrym/go-vlc
// Play plays the entries in the media list.
func (this *ListPlayer) Play() error {
	if this.ptr == nil {
		return &VLCError{"ListPlayer is nil"}
	}

	C.libvlc_media_list_player_play(this.ptr)
	return checkError()
}