Commit 269297b0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

input: export get_path from access.c

parent 76425f76
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#include <vlc_modules.h> #include <vlc_modules.h>
/* Decode URL (which has had its scheme stripped earlier) to a file path. */ /* Decode URL (which has had its scheme stripped earlier) to a file path. */
static char *get_path(const char *location) char *get_path(const char *location)
{ {
char *url, *path; char *url, *path;
......
...@@ -34,5 +34,7 @@ access_t *access_New( vlc_object_t *p_obj, input_thread_t *p_input, ...@@ -34,5 +34,7 @@ access_t *access_New( vlc_object_t *p_obj, input_thread_t *p_input,
#define access_New( a, b, c, d, e ) access_New(VLC_OBJECT(a), b, c, d, e ) #define access_New( a, b, c, d, e ) access_New(VLC_OBJECT(a), b, c, d, e )
void access_Delete( access_t * ); void access_Delete( access_t * );
char *get_path(const char *location);
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment