Changeset 2641ceaec6a0d5318c8c7cfa5872a97d51611000 for bindings/python
- Timestamp:
- 30/06/08 19:24:16 (3 months ago)
- git-parent:
- Files:
-
- bindings/python/vlc_mediaplayer.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
bindings/python/vlc_mediaplayer.c
r241b228 r2641cea 31 31 { 32 32 libvlc_exception_t ex; 33 vlc_int64_t i_ret;33 int64_t i_ret; 34 34 LIBVLC_TRY; 35 35 i_ret = libvlc_media_player_get_length( LIBVLC_MEDIAPLAYER->p_mp, &ex); … … 42 42 { 43 43 libvlc_exception_t ex; 44 vlc_int64_t i_ret;44 int64_t i_ret; 45 45 LIBVLC_TRY; 46 46 i_ret = libvlc_media_player_get_time( LIBVLC_MEDIAPLAYER->p_mp, &ex); … … 53 53 { 54 54 libvlc_exception_t ex; 55 vlc_int64_t i_time;55 int64_t i_time; 56 56 57 57 if( !PyArg_ParseTuple( args, "L", &i_time ) )
