Page 1 of 1

Are all char* strings Utf8 ?

Posted: 29 Oct 2020 12:45
by Asger-P
Hi
I just noticed that path parameter of:

libvlc_media_t *libvlc_media_new_path( libvlc_instance_t *p_instance, const char *path );

is expecting Utf8.

Is that the same in all places where char* are used ?

Are there any documentation with that kind of details ?

Thanks in advance
Best regards
Asger

Re: Are all char* strings Utf8 ?

Posted: 29 Oct 2020 12:49
by mfkl
Is that the same in all places where char* are used ?
Yes.
Are there any documentation with that kind of details ?
https://wiki.videolan.org/Documentation:Unicode/

Re: Are all char* strings Utf8 ?

Posted: 29 Oct 2020 13:49
by Asger-P
Thanks Martin