]> git.sesse.net Git - vlc/blobdiff - src/input/vlm_internal.h
vlc_thread_ready: remove
[vlc] / src / input / vlm_internal.h
index 6af32e0522adb09738c960d8d69f336c5c7c1980..a751cf3f81f26a7e77b247d67715ddae334ed79b 100644 (file)
@@ -39,7 +39,7 @@ typedef struct
     /* "playlist" index */
     int i_index;
 
-    vlc_bool_t      b_sout_keep;
+    bool      b_sout_keep;
 
     input_item_t    *p_item;
     input_thread_t  *p_input;
@@ -67,7 +67,7 @@ typedef struct
 {
     /* names "schedule" is reserved */
     char    *psz_name;
-    vlc_bool_t b_enabled;
+    bool b_enabled;
     /* list of commands to execute on date */
     int i_command;
     char **command;
@@ -105,4 +105,9 @@ struct vlm_t
     vlm_schedule_sys_t **schedule;
 };
 
+int64_t vlm_Date(void);
+int vlm_ControlInternal( vlm_t *p_vlm, int i_query, ... );
+int ExecuteCommand( vlm_t *, const char *, vlm_message_t ** );
+void vlm_ScheduleDelete( vlm_t *vlm, vlm_schedule_sys_t *sched );
+
 #endif