<p dir="ltr">No I think you need to include vlc_common to use it. It was mostly copy/pasted from there. </p>
<div class="gmail_extra"><br><div class="gmail_quote">On Sep 15, 2016 18:28, "Jean-Baptiste Kempf" <<a href="mailto:jb@videolan.org">jb@videolan.org</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 15 Sep, Steve Lhomme wrote :<br>
> +#ifdef _WIN32<br>
> +    int len = MultiByteToWideChar( CP_UTF8, 0, relpath, -1, NULL, 0 );<br>
> +    if (len == 0)<br>
> +        return NULL;<br>
> +<br>
> +    wchar_t *wrelpath = (wchar_t *)malloc(len * sizeof (wchar_t));<br>
> +    if (wrelpath == NULL)<br>
> +        return NULL;<br>
> +<br>
> +    MultiByteToWideChar( CP_UTF8, 0, relpath, -1, wrelpath, len );<br>
<br>
Would it work to include vlc_charset.h here and call FromWide and<br>
ToWide, since they are static inlined there?<br>
<br>
(I'm not sure, because that header could need vlc_fixup or config.h)<br>
<br>
--<br>
Jean-Baptiste Kempf<br>
<a href="http://www.jbkempf.com/" rel="noreferrer" target="_blank">http://www.jbkempf.com/</a> - <a href="tel:%2B33%20672%20704%20734" value="+33672704734">+33 672 704 734</a><br>
Sent from my Electronic Device<br>
______________________________<wbr>_________________<br>
vlc-devel mailing list<br>
To unsubscribe or modify your subscription options:<br>
<a href="https://mailman.videolan.org/listinfo/vlc-devel" rel="noreferrer" target="_blank">https://mailman.videolan.org/<wbr>listinfo/vlc-devel</a><br>
</blockquote></div></div>