Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
3adef752
Commit
3adef752
authored
Mar 25, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc: Introduce VLC_DEPRECATED_API. And mark the libvlc_playlist_* and VLC_* API as deprecated.
parent
6c52c72b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
78 additions
and
67 deletions
+78
-67
include/vlc/libvlc.h
include/vlc/libvlc.h
+26
-27
include/vlc/vlc.h
include/vlc/vlc.h
+52
-40
No files found.
include/vlc/libvlc.h
View file @
3adef752
...
...
@@ -293,7 +293,7 @@ VLC_PUBLIC_API void *
* \param loop the loop attribute. 1 sets looping, 0 disables it
* \param p_e an initialized exception pointer
*/
VLC_
PUBLIC
_API
void
libvlc_playlist_loop
(
libvlc_instance_t
*
,
int
,
VLC_
DEPRECATED
_API
void
libvlc_playlist_loop
(
libvlc_instance_t
*
,
int
,
libvlc_exception_t
*
);
/**
...
...
@@ -310,7 +310,7 @@ VLC_PUBLIC_API void libvlc_playlist_loop( libvlc_instance_t* , int,
* \param ppsz_options the options to add to the item
* \param p_e an initialized exception pointer
*/
VLC_
PUBLIC
_API
void
libvlc_playlist_play
(
libvlc_instance_t
*
,
int
,
int
,
VLC_
DEPRECATED
_API
void
libvlc_playlist_play
(
libvlc_instance_t
*
,
int
,
int
,
char
**
,
libvlc_exception_t
*
);
/**
...
...
@@ -321,7 +321,7 @@ VLC_PUBLIC_API void libvlc_playlist_play( libvlc_instance_t*, int, int,
* \param p_instance the playlist instance to pause
* \param p_e an initialized exception pointer
*/
VLC_
PUBLIC
_API
void
libvlc_playlist_pause
(
libvlc_instance_t
*
,
VLC_
DEPRECATED
_API
void
libvlc_playlist_pause
(
libvlc_instance_t
*
,
libvlc_exception_t
*
);
/**
...
...
@@ -331,7 +331,7 @@ VLC_PUBLIC_API void libvlc_playlist_pause( libvlc_instance_t *,
* \param p_e an initialized exception pointer
* \return 0 if the playlist is stopped or paused, 1 if it is running
*/
VLC_
PUBLIC
_API
int
libvlc_playlist_isplaying
(
libvlc_instance_t
*
,
VLC_
DEPRECATED
_API
int
libvlc_playlist_isplaying
(
libvlc_instance_t
*
,
libvlc_exception_t
*
);
/**
...
...
@@ -341,7 +341,7 @@ VLC_PUBLIC_API int libvlc_playlist_isplaying( libvlc_instance_t *,
* \param p_e an initialized exception pointer
* \return the number of items
*/
VLC_
PUBLIC
_API
int
libvlc_playlist_items_count
(
libvlc_instance_t
*
,
VLC_
DEPRECATED
_API
int
libvlc_playlist_items_count
(
libvlc_instance_t
*
,
libvlc_exception_t
*
);
/**
...
...
@@ -349,14 +349,14 @@ VLC_PUBLIC_API int libvlc_playlist_items_count( libvlc_instance_t *,
*
* \param p_instance the playlist instance
*/
VLC_
PUBLIC
_API
void
libvlc_playlist_lock
(
libvlc_instance_t
*
);
VLC_
DEPRECATED
_API
void
libvlc_playlist_lock
(
libvlc_instance_t
*
);
/**
* Unlock the playlist.
*
* \param p_instance the playlist instance
*/
VLC_
PUBLIC
_API
void
libvlc_playlist_unlock
(
libvlc_instance_t
*
);
VLC_
DEPRECATED
_API
void
libvlc_playlist_unlock
(
libvlc_instance_t
*
);
/**
* Stop playing.
...
...
@@ -364,7 +364,7 @@ VLC_PUBLIC_API void libvlc_playlist_unlock( libvlc_instance_t * );
* \param p_instance the playlist instance to stop
* \param p_e an initialized exception pointer
*/
VLC_
PUBLIC
_API
void
libvlc_playlist_stop
(
libvlc_instance_t
*
,
VLC_
DEPRECATED
_API
void
libvlc_playlist_stop
(
libvlc_instance_t
*
,
libvlc_exception_t
*
);
/**
...
...
@@ -374,7 +374,7 @@ VLC_PUBLIC_API void libvlc_playlist_stop( libvlc_instance_t *,
* \param p_instance the playlist instance
* \param p_e an initialized exception pointer
*/
VLC_
PUBLIC
_API
void
libvlc_playlist_next
(
libvlc_instance_t
*
,
VLC_
DEPRECATED
_API
void
libvlc_playlist_next
(
libvlc_instance_t
*
,
libvlc_exception_t
*
);
/**
...
...
@@ -384,7 +384,7 @@ VLC_PUBLIC_API void libvlc_playlist_next( libvlc_instance_t *,
* \param p_instance the playlist instance
* \param p_e an initialized exception pointer
*/
VLC_
PUBLIC
_API
void
libvlc_playlist_prev
(
libvlc_instance_t
*
,
VLC_
DEPRECATED
_API
void
libvlc_playlist_prev
(
libvlc_instance_t
*
,
libvlc_exception_t
*
);
/**
...
...
@@ -393,7 +393,7 @@ VLC_PUBLIC_API void libvlc_playlist_prev( libvlc_instance_t *,
* \param p_instance the playlist instance
* \param p_e an initialized exception pointer
*/
VLC_
PUBLIC
_API
void
libvlc_playlist_clear
(
libvlc_instance_t
*
,
VLC_
DEPRECATED
_API
void
libvlc_playlist_clear
(
libvlc_instance_t
*
,
libvlc_exception_t
*
);
/**
...
...
@@ -406,7 +406,7 @@ VLC_PUBLIC_API void libvlc_playlist_clear( libvlc_instance_t *,
* \param p_e an initialized exception pointer
* \return the identifier of the new item
*/
VLC_
PUBLIC
_API
int
libvlc_playlist_add
(
libvlc_instance_t
*
,
const
char
*
,
VLC_
DEPRECATED
_API
int
libvlc_playlist_add
(
libvlc_instance_t
*
,
const
char
*
,
const
char
*
,
libvlc_exception_t
*
);
/**
...
...
@@ -421,7 +421,7 @@ VLC_PUBLIC_API int libvlc_playlist_add( libvlc_instance_t *, const char *,
* \param p_e an initialized exception pointer
* \return the identifier of the new item
*/
VLC_
PUBLIC
_API
int
libvlc_playlist_add_extended
(
libvlc_instance_t
*
,
const
char
*
,
VLC_
DEPRECATED
_API
int
libvlc_playlist_add_extended
(
libvlc_instance_t
*
,
const
char
*
,
const
char
*
,
int
,
const
char
**
,
libvlc_exception_t
*
);
...
...
@@ -433,7 +433,7 @@ VLC_PUBLIC_API int libvlc_playlist_add_extended( libvlc_instance_t *, const char
* \param p_e an initialized exception pointer
* \return 0 in case of success, a non-zero value otherwise
*/
VLC_
PUBLIC
_API
int
libvlc_playlist_delete_item
(
libvlc_instance_t
*
,
int
,
VLC_
DEPRECATED
_API
int
libvlc_playlist_delete_item
(
libvlc_instance_t
*
,
int
,
libvlc_exception_t
*
);
/** Get the input that is currently being played by the playlist.
...
...
@@ -442,17 +442,9 @@ VLC_PUBLIC_API int libvlc_playlist_delete_item( libvlc_instance_t *, int,
* \param p_e an initialized exception pointern
* \return a media instance object
*/
VLC_
PUBLIC
_API
libvlc_media_instance_t
*
libvlc_playlist_get_media_instance
(
VLC_
DEPRECATED
_API
libvlc_media_instance_t
*
libvlc_playlist_get_media_instance
(
libvlc_instance_t
*
,
libvlc_exception_t
*
);
VLC_PUBLIC_API
int
libvlc_media_instance_is_seekable
(
libvlc_media_instance_t
*
p_mi
,
libvlc_exception_t
*
p_e
);
VLC_PUBLIC_API
int
libvlc_media_instance_can_pause
(
libvlc_media_instance_t
*
p_mi
,
libvlc_exception_t
*
p_e
);
/** @}*/
/*****************************************************************************
...
...
@@ -541,6 +533,13 @@ VLC_PUBLIC_API libvlc_state_t libvlc_media_instance_get_state ( libvlc_media_i
VLC_PUBLIC_API
int
libvlc_media_instance_has_vout
(
libvlc_media_instance_t
*
,
libvlc_exception_t
*
);
VLC_PUBLIC_API
float
libvlc_media_instance_get_fps
(
libvlc_media_instance_t
*
,
libvlc_exception_t
*
);
VLC_PUBLIC_API
int
libvlc_media_instance_is_seekable
(
libvlc_media_instance_t
*
p_mi
,
libvlc_exception_t
*
p_e
);
VLC_PUBLIC_API
int
libvlc_media_instance_can_pause
(
libvlc_media_instance_t
*
p_mi
,
libvlc_exception_t
*
p_e
);
/** @} */
...
...
@@ -728,18 +727,18 @@ VLC_PUBLIC_API libvlc_media_list_t *
* LibVLC Media List
* @{ */
VLC_
PUBLIC
_API
libvlc_dynamic_media_list_t
*
VLC_
DEPRECATED
_API
libvlc_dynamic_media_list_t
*
libvlc_dynamic_media_list_new
(
libvlc_media_list_t
*
p_mlist
,
libvlc_tag_query_t
*
p_query
,
libvlc_tag_t
tag
,
libvlc_exception_t
*
p_e
);
VLC_
PUBLIC
_API
void
VLC_
DEPRECATED
_API
void
libvlc_dynamic_media_list_release
(
libvlc_dynamic_media_list_t
*
p_dmlist
);
VLC_
PUBLIC
_API
void
VLC_
DEPRECATED
_API
void
libvlc_dynamic_media_list_retain
(
libvlc_dynamic_media_list_t
*
p_dmlist
);
libvlc_media_list_t
*
VLC_DEPRECATED_API
libvlc_media_list_t
*
libvlc_dynamic_media_list_media_list
(
libvlc_dynamic_media_list_t
*
p_dmlist
,
libvlc_exception_t
*
p_e
);
...
...
include/vlc/vlc.h
View file @
3adef752
...
...
@@ -160,8 +160,20 @@ struct vlc_list_t
/*****************************************************************************
* Shared library Export macros
*****************************************************************************/
#ifndef VLC_PUBLIC_API
# define VLC_PUBLIC_API extern
#ifndef VLC_DEPRECATED_API
# define VLC_DEPRECATED_API extern
#endif
/*****************************************************************************
* Compiler specific
*****************************************************************************/
#ifndef VLC_DEPRECATED_API
#if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
# define VLC_DEPRECATED_API VLC_PUBLIC_API __attribute__((deprecated))
#else
# define VLC_DEPRECATED_API VLC_PUBLIC_API
#endif
#endif
/*****************************************************************************
...
...
@@ -174,49 +186,49 @@ struct vlc_list_t
*
* \return a string containing the libvlc version
*/
VLC_
PUBLIC
_API
char
const
*
VLC_Version
(
void
);
VLC_
DEPRECATED
_API
char
const
*
VLC_Version
(
void
);
/**
* Retrieve libvlc compile time
*
* \return a string containing the libvlc compile time
*/
VLC_
PUBLIC
_API
char
const
*
VLC_CompileTime
(
void
);
VLC_
DEPRECATED
_API
char
const
*
VLC_CompileTime
(
void
);
/**
* Retrieve the username of the libvlc builder
*
* \return a string containing the username of the libvlc builder
*/
VLC_
PUBLIC
_API
char
const
*
VLC_CompileBy
(
void
);
VLC_
DEPRECATED
_API
char
const
*
VLC_CompileBy
(
void
);
/**
* Retrieve the host of the libvlc builder
*
* \return a string containing the host of the libvlc builder
*/
VLC_
PUBLIC
_API
char
const
*
VLC_CompileHost
(
void
);
VLC_
DEPRECATED
_API
char
const
*
VLC_CompileHost
(
void
);
/**
* Retrieve the domain name of the host of the libvlc builder
*
* \return a string containing the domain name of the host of the libvlc builder
*/
VLC_
PUBLIC
_API
char
const
*
VLC_CompileDomain
(
void
);
VLC_
DEPRECATED
_API
char
const
*
VLC_CompileDomain
(
void
);
/**
* Retrieve libvlc compiler version
*
* \return a string containing the libvlc compiler version
*/
VLC_
PUBLIC
_API
char
const
*
VLC_Compiler
(
void
);
VLC_
DEPRECATED
_API
char
const
*
VLC_Compiler
(
void
);
/**
* Retrieve libvlc changeset
*
* \return a string containing the libvlc subversion changeset
*/
VLC_
PUBLIC
_API
char
const
*
VLC_Changeset
(
void
);
VLC_
DEPRECATED
_API
char
const
*
VLC_Changeset
(
void
);
/**
* Return an error string
...
...
@@ -224,7 +236,7 @@ VLC_PUBLIC_API char const * VLC_Changeset ( void );
* \param i_err an error code
* \return an error string
*/
VLC_
PUBLIC
_API
char
const
*
VLC_Error
(
int
i_err
);
VLC_
DEPRECATED
_API
char
const
*
VLC_Error
(
int
i_err
);
#endif
/* __LIBVLC__ */
...
...
@@ -236,7 +248,7 @@ VLC_PUBLIC_API char const * VLC_Error ( int i_err );
*
* \return vlc object id or an error code
*/
VLC_
PUBLIC
_API
int
VLC_Create
(
void
);
VLC_
DEPRECATED
_API
int
VLC_Create
(
void
);
/**
* Initialize a vlc_t structure
...
...
@@ -252,7 +264,7 @@ VLC_PUBLIC_API int VLC_Create( void );
* \param ppsz_argv an array of arguments
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_Init
(
int
,
int
,
const
char
*
[]
);
VLC_
DEPRECATED
_API
int
VLC_Init
(
int
,
int
,
const
char
*
[]
);
/**
* Add an interface
...
...
@@ -268,7 +280,7 @@ VLC_PUBLIC_API int VLC_Init( int, int, const char *[] );
* \param b_play start playing when the interface is done loading
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_AddIntf
(
int
,
char
const
*
,
vlc_bool_t
,
vlc_bool_t
);
VLC_
DEPRECATED
_API
int
VLC_AddIntf
(
int
,
char
const
*
,
vlc_bool_t
,
vlc_bool_t
);
/**
* Ask vlc to die
...
...
@@ -279,7 +291,7 @@ VLC_PUBLIC_API int VLC_AddIntf( int, char const *, vlc_bool_t, vlc_bool_t );
* \param i_object a vlc object id
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_Die
(
int
);
VLC_
DEPRECATED
_API
int
VLC_Die
(
int
);
/**
* Clean up all the intf, playlist, vout and aout
...
...
@@ -292,7 +304,7 @@ VLC_PUBLIC_API int VLC_Die( int );
* \param i_object a vlc object id
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_CleanUp
(
int
);
VLC_
DEPRECATED
_API
int
VLC_CleanUp
(
int
);
/**
* Destroy all threads and the VLC object
...
...
@@ -304,7 +316,7 @@ VLC_PUBLIC_API int VLC_CleanUp( int );
* \param i_object a vlc object id
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_Destroy
(
int
);
VLC_
DEPRECATED
_API
int
VLC_Destroy
(
int
);
/**
* Set a VLC variable
...
...
@@ -318,7 +330,7 @@ VLC_PUBLIC_API int VLC_Destroy( int );
* \param value a vlc_value_t structure
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_VariableSet
(
int
,
char
const
*
,
vlc_value_t
);
VLC_
DEPRECATED
_API
int
VLC_VariableSet
(
int
,
char
const
*
,
vlc_value_t
);
/**
* Get a VLC variable
...
...
@@ -333,7 +345,7 @@ VLC_PUBLIC_API int VLC_VariableSet( int, char const *, vlc_value_t );
* \param p_value a pointer to a vlc_value_t structure
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_VariableGet
(
int
,
char
const
*
,
vlc_value_t
*
);
VLC_
DEPRECATED
_API
int
VLC_VariableGet
(
int
,
char
const
*
,
vlc_value_t
*
);
/**
* Get a VLC variable type
...
...
@@ -346,7 +358,7 @@ VLC_PUBLIC_API int VLC_VariableGet( int, char const *, vlc_value_t * );
* \param pi_type a pointer to an integer
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_VariableType
(
int
,
char
const
*
,
int
*
);
VLC_
DEPRECATED
_API
int
VLC_VariableType
(
int
,
char
const
*
,
int
*
);
/**
* Add a target to the current playlist
...
...
@@ -362,7 +374,7 @@ VLC_PUBLIC_API int VLC_VariableType( int, char const *, int * );
* \param i_pos the position at which to add the new target (PLAYLIST_END for end)
* \return the item id on success and -1 on error
*/
VLC_
PUBLIC
_API
int
VLC_AddTarget
(
int
,
char
const
*
,
const
char
**
,
int
,
int
,
int
);
VLC_
DEPRECATED
_API
int
VLC_AddTarget
(
int
,
char
const
*
,
const
char
**
,
int
,
int
,
int
);
/**
* Start the playlist and play the currently selected playlist item
...
...
@@ -374,7 +386,7 @@ VLC_PUBLIC_API int VLC_AddTarget( int, char const *, const char **, int, int
* \param i_object a vlc object id
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_Play
(
int
);
VLC_
DEPRECATED
_API
int
VLC_Play
(
int
);
/**
* Pause the currently playing item. Resume it if already paused
...
...
@@ -385,7 +397,7 @@ VLC_PUBLIC_API int VLC_Play( int );
* \param i_object a vlc object id
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_Pause
(
int
);
VLC_
DEPRECATED
_API
int
VLC_Pause
(
int
);
/**
* Stop the playlist
...
...
@@ -398,7 +410,7 @@ VLC_PUBLIC_API int VLC_Pause( int );
* \param i_object a vlc object id
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_Stop
(
int
);
VLC_
DEPRECATED
_API
int
VLC_Stop
(
int
);
/**
* Tell if VLC is playing
...
...
@@ -409,7 +421,7 @@ VLC_PUBLIC_API int VLC_Stop( int );
* \param i_object a vlc object id
* \return VLC_TRUE or VLC_FALSE
*/
VLC_
PUBLIC
_API
vlc_bool_t
VLC_IsPlaying
(
int
);
VLC_
DEPRECATED
_API
vlc_bool_t
VLC_IsPlaying
(
int
);
/**
* Get the current position in a input
...
...
@@ -421,7 +433,7 @@ VLC_PUBLIC_API vlc_bool_t VLC_IsPlaying( int );
* \param i_object a vlc object id
* \return a float in the range of 0.0 - 1.0
*/
VLC_
PUBLIC
_API
float
VLC_PositionGet
(
int
);
VLC_
DEPRECATED
_API
float
VLC_PositionGet
(
int
);
/**
* Set the current position in a input
...
...
@@ -434,7 +446,7 @@ VLC_PUBLIC_API float VLC_PositionGet( int );
* \param i_position a float in the range of 0.0 - 1.0
* \return a float in the range of 0.0 - 1.0
*/
VLC_
PUBLIC
_API
float
VLC_PositionSet
(
int
,
float
);
VLC_
DEPRECATED
_API
float
VLC_PositionSet
(
int
,
float
);
/**
* Get the current position in a input
...
...
@@ -445,7 +457,7 @@ VLC_PUBLIC_API float VLC_PositionSet( int, float );
* \param i_object a vlc object id
* \return the offset from 0:00 in seconds
*/
VLC_
PUBLIC
_API
int
VLC_TimeGet
(
int
);
VLC_
DEPRECATED
_API
int
VLC_TimeGet
(
int
);
/**
* Seek to a position in the current input
...
...
@@ -460,7 +472,7 @@ VLC_PUBLIC_API int VLC_TimeGet( int );
* \param b_relative seek relative from current position
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_TimeSet
(
int
,
int
,
vlc_bool_t
);
VLC_
DEPRECATED
_API
int
VLC_TimeSet
(
int
,
int
,
vlc_bool_t
);
/**
* Get the total length of a input
...
...
@@ -471,7 +483,7 @@ VLC_PUBLIC_API int VLC_TimeSet( int, int, vlc_bool_t );
* \param i_object a vlc object id
* \return the length in seconds
*/
VLC_
PUBLIC
_API
int
VLC_LengthGet
(
int
);
VLC_
DEPRECATED
_API
int
VLC_LengthGet
(
int
);
/**
* Play the input faster than realtime
...
...
@@ -482,7 +494,7 @@ VLC_PUBLIC_API int VLC_LengthGet( int );
* \param i_object a vlc object id
* \return the current speedrate
*/
VLC_
PUBLIC
_API
float
VLC_SpeedFaster
(
int
);
VLC_
DEPRECATED
_API
float
VLC_SpeedFaster
(
int
);
/**
* Play the input slower than realtime
...
...
@@ -493,7 +505,7 @@ VLC_PUBLIC_API float VLC_SpeedFaster( int );
* \param i_object a vlc object id
* \return the current speedrate
*/
VLC_
PUBLIC
_API
float
VLC_SpeedSlower
(
int
);
VLC_
DEPRECATED
_API
float
VLC_SpeedSlower
(
int
);
/**
* Return the current playlist item
...
...
@@ -501,7 +513,7 @@ VLC_PUBLIC_API float VLC_SpeedSlower( int );
* \param i_object a vlc object id
* \return the index of the playlistitem that is currently selected for play
*/
VLC_
PUBLIC
_API
int
VLC_PlaylistIndex
(
int
);
VLC_
DEPRECATED
_API
int
VLC_PlaylistIndex
(
int
);
/**
* Total amount of items in the playlist
...
...
@@ -509,7 +521,7 @@ VLC_PUBLIC_API int VLC_PlaylistIndex( int );
* \param i_object a vlc object id
* \return amount of playlist items
*/
VLC_
PUBLIC
_API
int
VLC_PlaylistNumberOfItems
(
int
);
VLC_
DEPRECATED
_API
int
VLC_PlaylistNumberOfItems
(
int
);
/**
* Next playlist item
...
...
@@ -519,7 +531,7 @@ VLC_PUBLIC_API int VLC_PlaylistNumberOfItems( int );
* \param i_object a vlc object id
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_PlaylistNext
(
int
);
VLC_
DEPRECATED
_API
int
VLC_PlaylistNext
(
int
);
/**
* Previous playlist item
...
...
@@ -529,7 +541,7 @@ VLC_PUBLIC_API int VLC_PlaylistNext( int );
* \param i_object a vlc object id
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_PlaylistPrev
(
int
);
VLC_
DEPRECATED
_API
int
VLC_PlaylistPrev
(
int
);
/**
* Clear the contents of the playlist
...
...
@@ -541,7 +553,7 @@ VLC_PUBLIC_API int VLC_PlaylistPrev( int );
* \param i_object a vlc object id
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_PlaylistClear
(
int
);
VLC_
DEPRECATED
_API
int
VLC_PlaylistClear
(
int
);
/**
* Change the volume
...
...
@@ -550,7 +562,7 @@ VLC_PUBLIC_API int VLC_PlaylistClear( int );
* \param i_volume something in a range from 0-200
* \return the new volume (range 0-200 %)
*/
VLC_
PUBLIC
_API
int
VLC_VolumeSet
(
int
,
int
);
VLC_
DEPRECATED
_API
int
VLC_VolumeSet
(
int
,
int
);
/**
* Get the current volume
...
...
@@ -560,7 +572,7 @@ VLC_PUBLIC_API int VLC_VolumeSet( int, int );
* \param i_object a vlc object id
* \return the current volume (range 0-200 %)
*/
VLC_
PUBLIC
_API
int
VLC_VolumeGet
(
int
);
VLC_
DEPRECATED
_API
int
VLC_VolumeGet
(
int
);
/**
* Mute/Unmute the volume
...
...
@@ -568,7 +580,7 @@ VLC_PUBLIC_API int VLC_VolumeGet( int );
* \param i_object a vlc object id
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_VolumeMute
(
int
);
VLC_
DEPRECATED
_API
int
VLC_VolumeMute
(
int
);
/**
* Toggle Fullscreen mode
...
...
@@ -578,7 +590,7 @@ VLC_PUBLIC_API int VLC_VolumeMute( int );
* \param i_object a vlc object id
* \return VLC_SUCCESS on success
*/
VLC_
PUBLIC
_API
int
VLC_FullScreen
(
int
);
VLC_
DEPRECATED
_API
int
VLC_FullScreen
(
int
);
# ifdef __cplusplus
...
...
Write
Preview
Markdown
is supported
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