Example #1
0
// Pause pauses playback.
func (this *ListPlayer) Pause() error {
	if this.ptr == nil {
		return os.EINVAL
	}

	C.libvlc_media_list_player_pause(this.ptr)
	return checkError()
}
Example #2
0
// Pause pauses playback.
func (this *ListPlayer) Pause() error {
	if this.ptr == nil {
		return &VLCError{"ListPlayer is nil"}
	}

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