Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
712d1a84
Commit
712d1a84
authored
Aug 05, 2003
by
Cyril Deguet
Browse files
* VLC_AddTarget had a new prototype
parent
eb1818ef
Changes
1
Show whitespace changes
Inline
Side-by-side
python/vlcmodule.c
View file @
712d1a84
...
...
@@ -35,7 +35,7 @@ static PyObject *vlc_addTarget(PyObject *self, PyObject *args)
if
(
!
PyArg_ParseTuple
(
args
,
"is"
,
&
iVlc
,
&
file
))
return
NULL
;
iRc
=
VLC_AddTarget
(
iVlc
,
file
,
PLAYLIST_APPEND
,
PLAYLIST_END
);
iRc
=
VLC_AddTarget
(
iVlc
,
file
,
0
,
0
,
PLAYLIST_APPEND
,
PLAYLIST_END
);
return
Py_BuildValue
(
"i"
,
iRc
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment