X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_vlm.h;h=11111da6edb9fbecaa750af4c2851a5f0c338f0b;hb=9740035f7056cdc18021b2cbd58ff80ecdb42112;hp=501b4a2057cea8576485055184fd69aba9d3a856;hpb=6f258887aa634d8cceaf9797779521dfd8340be2;p=vlc diff --git a/include/vlc_vlm.h b/include/vlc_vlm.h index 501b4a2057..11111da6ed 100644 --- a/include/vlc_vlm.h +++ b/include/vlc_vlm.h @@ -1,25 +1,25 @@ /***************************************************************************** * vlc_vlm.h: VLM core structures ***************************************************************************** - * Copyright (C) 2000, 2001 the VideoLAN team + * Copyright (C) 2000, 2001 VLC authors and VideoLAN * $Id$ * * Authors: Simon Latapie * Laurent Aimar * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #ifndef VLC_VLM_H @@ -180,7 +180,7 @@ struct vlm_message_t }; -#ifdef __cpluplus +#ifdef __cplusplus extern "C" { #endif @@ -191,7 +191,7 @@ VLC_API int vlm_ExecuteCommand( vlm_t *, const char *, vlm_message_t ** ); VLC_API int vlm_Control( vlm_t *p_vlm, int i_query, ... ); VLC_API vlm_message_t * vlm_MessageSimpleNew( const char * ); -VLC_API vlm_message_t * vlm_MessageNew( const char *, const char *, ... ) LIBVLC_FORMAT( 2, 3 ); +VLC_API vlm_message_t * vlm_MessageNew( const char *, const char *, ... ) VLC_FORMAT( 2, 3 ); VLC_API vlm_message_t * vlm_MessageAdd( vlm_message_t *, vlm_message_t * ); VLC_API void vlm_MessageDelete( vlm_message_t * ); @@ -236,9 +236,9 @@ vlm_media_Copy( vlm_media_t *p_dst, const vlm_media_t *p_src ) p_dst->psz_name = strdup( p_src->psz_name ); for( i = 0; i < p_src->i_input; i++ ) - TAB_APPEND_CPP( char, p_dst->i_input, p_dst->ppsz_input, strdup(p_src->ppsz_input[i]) ); + TAB_APPEND_CAST( (char**), p_dst->i_input, p_dst->ppsz_input, strdup(p_src->ppsz_input[i]) ); for( i = 0; i < p_src->i_option; i++ ) - TAB_APPEND_CPP( char, p_dst->i_option, p_dst->ppsz_option, strdup(p_src->ppsz_option[i]) ); + TAB_APPEND_CAST( (char**), p_dst->i_option, p_dst->ppsz_option, strdup(p_src->ppsz_option[i]) ); if( p_src->psz_output ) p_dst->psz_output = strdup( p_src->psz_output ); @@ -360,7 +360,7 @@ static inline void vlm_media_instance_Delete( vlm_media_instance_t *p_instance ) free( p_instance ); } -#ifdef __cpluplus +#ifdef __cplusplus } #endif