00001 /***************************************************************************** 00002 * vlm_event.h: VLM event functions 00003 ***************************************************************************** 00004 * Copyright (C) 2009 Laurent Aimar 00005 * $Id: 61e72665ce260e97c5907ff38d588f10f792f061 $ 00006 * 00007 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ fr> 00008 * 00009 * This program is free software; you can redistribute it and/or modify it 00010 * under the terms of the GNU Lesser General Public License as published by 00011 * the Free Software Foundation; either version 2.1 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU Lesser General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU Lesser General Public License 00020 * along with this program; if not, write to the Free Software Foundation, 00021 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 00022 *****************************************************************************/ 00023 00024 #ifndef LIBVLC_VLM_EVENT_H 00025 #define LIBVLC_VLM_EVENT_H 1 00026 00027 #include <vlc_common.h> 00028 00029 /***************************************************************************** 00030 * 00031 *****************************************************************************/ 00032 void vlm_SendEventMediaAdded( vlm_t *, int64_t id, const char *psz_name ); 00033 void vlm_SendEventMediaRemoved( vlm_t *, int64_t id, const char *psz_name ); 00034 void vlm_SendEventMediaChanged( vlm_t *, int64_t id, const char *psz_name ); 00035 00036 void vlm_SendEventMediaInstanceStarted( vlm_t *, int64_t id, const char *psz_name ); 00037 void vlm_SendEventMediaInstanceStopped( vlm_t *, int64_t id, const char *psz_name ); 00038 void vlm_SendEventMediaInstanceState( vlm_t *, int64_t id, const char *psz_name, const char *psz_instance_name, input_state_e state ); 00039 00040 #endif
1.7.1