]> git.sesse.net Git - vlc/blobdiff - src/input/vlm_event.h
Use var_Inherit* instead of var_CreateGet*.
[vlc] / src / input / vlm_event.h
index eeedd221912a08969917257638a2277aef31b799..2aa837fbaa061d52c96352090b4647af3a78b0f8 100644 (file)
 /*****************************************************************************
  *
  *****************************************************************************/
-void vlm_SendEventMediaAdded( vlm_t *, int64_t id );
-void vlm_SendEventMediaRemoved( vlm_t *, int64_t id );
-void vlm_SendEventMediaChanged( vlm_t *, int64_t id );
-
-void vlm_SendEventMediaInstanceStarted( vlm_t *, int64_t id );
-void vlm_SendEventMediaInstanceStopped( vlm_t *, int64_t id );
+void vlm_SendEventMediaAdded( vlm_t *, int64_t id, const char *psz_name );
+void vlm_SendEventMediaRemoved( vlm_t *, int64_t id, const char *psz_name );
+void vlm_SendEventMediaChanged( vlm_t *, int64_t id, const char *psz_name );
 
+void vlm_SendEventMediaInstanceStarted( vlm_t *, int64_t id, const char *psz_name );
+void vlm_SendEventMediaInstanceStopped( vlm_t *, int64_t id, const char *psz_name );
+void vlm_SendEventMediaInstanceState( vlm_t *, int64_t id, const char *psz_name, const char *psz_instance_name, input_state_e state );
 
 #endif