We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7699fc1 commit 2279309Copy full SHA for 2279309
src/VLC/VLCLibrary.class.st
@@ -123,6 +123,11 @@ VLCLibrary >> initializeVLC [
123
^ self ffiCall: 'void * libvlc_new();'
124
]
125
126
+{ #category : #'media list' }
127
+VLCLibrary >> insertInMediaList: aMediaList media: aMedia atIndex: anIndex [
128
+ ^ self ffiCall: 'int libvlc_media_list_insert_media (void * aMediaList, void * aMedia, int anIndex)'
129
+]
130
+
131
{ #category : #'media list player' }
132
VLCLibrary >> isListPlayerPlaying: aListPlayer [
133
^ self ffiCall: 'bool libvlc_media_list_player_is_playing (void* aListPlayer)'
0 commit comments