]> git.sesse.net Git - vlc/blobdiff - src/input/resource.h
Win32: hack^Wfix opening UNC paths (fixes #3459)
[vlc] / src / input / resource.h
index 97c6f3234c6319ba3a3599f359e21d3329bedd2f..fa20611a92a39c9f50daa4aacd65c210f5906c55 100644 (file)
@@ -40,6 +40,13 @@ input_resource_t *input_resource_New( void );
  */
 void input_resource_SetInput( input_resource_t *, input_thread_t * );
 
+/**
+ * This function return a input_resource_t with all resources detach from the
+ * given input_resource_t.
+ * It must not be associated to an input.
+ */
+input_resource_t *input_resource_Detach( input_resource_t * );
+
 /**
  * This function handles sout request.
  */
@@ -74,7 +81,7 @@ vout_thread_t *input_resource_HoldVout( input_resource_t * );
  *
  * You must call vlc_object_release on all values returned (if non NULL).
  */
-void input_resource_HoldVouts( input_resource_t *, vout_thread_t ***, int * );
+void input_resource_HoldVouts( input_resource_t *, vout_thread_t ***, size_t * );
 
 #endif