Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
0fd1b747
Commit
0fd1b747
authored
Apr 30, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Export ToLocaleDup
parent
b8a4cd33
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
1 deletion
+3
-1
include/vlc_charset.h
include/vlc_charset.h
+1
-0
src/libvlc.sym
src/libvlc.sym
+1
-0
src/text/unicode.c
src/text/unicode.c
+1
-1
No files found.
include/vlc_charset.h
View file @
0fd1b747
...
...
@@ -37,6 +37,7 @@ VLC_EXPORT( void, LocaleFree, ( const char * ) );
VLC_EXPORT
(
char
*
,
FromLocale
,
(
const
char
*
)
);
VLC_EXPORT
(
char
*
,
FromLocaleDup
,
(
const
char
*
)
);
VLC_EXPORT
(
char
*
,
ToLocale
,
(
const
char
*
)
);
VLC_EXPORT
(
char
*
,
ToLocaleDup
,
(
const
char
*
)
);
/* TODO: move all of this to "vlc_fs.h" or something like that */
VLC_EXPORT
(
int
,
utf8_open
,
(
const
char
*
filename
,
int
flags
,
mode_t
mode
)
);
...
...
src/libvlc.sym
View file @
0fd1b747
...
...
@@ -330,6 +330,7 @@ str_format_time
tls_ClientCreate
tls_ClientDelete
ToLocale
ToLocaleDup
unescape_URI
unescape_URI_duplicate
update_Check
...
...
src/text/unicode.c
View file @
0fd1b747
...
...
@@ -226,7 +226,7 @@ char *ToLocale (const char *utf8)
}
static
char
*
ToLocaleDup
(
const
char
*
utf8
)
char
*
ToLocaleDup
(
const
char
*
utf8
)
{
return
locale_dup
(
utf8
,
false
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment