Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
2f457682
Commit
2f457682
authored
Mar 22, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: add ToCodePage() and FromCodePage()
parent
3f6ccc0d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
include/vlc_charset.h
include/vlc_charset.h
+35
-0
No files found.
include/vlc_charset.h
View file @
2f457682
...
...
@@ -100,6 +100,41 @@ static inline wchar_t *ToWide (const char *utf8)
return
out
;
}
VLC_USED
VLC_MALLOC
static
inline
char
*
ToCodePage
(
unsigned
cp
,
const
char
*
utf8
)
{
wchar_t
*
wide
=
ToWide
(
utf8
);
if
(
wide
==
NULL
)
return
NULL
;
size_t
len
=
WideCharToMultiByte
(
cp
,
0
,
wide
,
-
1
,
NULL
,
0
,
NULL
,
NULL
);
if
(
len
==
0
)
return
NULL
;
char
*
out
=
(
char
*
)
malloc
(
len
);
if
(
likely
(
out
!=
NULL
))
WideCharToMultiByte
(
cp
,
0
,
wide
,
-
1
,
out
,
len
,
NULL
,
NULL
);
free
(
wide
);
return
out
;
}
VLC_USED
VLC_MALLOC
static
inline
char
*
FromCodePage
(
unsigned
cp
,
const
char
*
mb
)
{
int
len
=
MultiByteToWideChar
(
cp
,
0
,
mb
,
-
1
,
NULL
,
0
);
if
(
len
==
0
)
return
NULL
;
wchar_t
*
wide
=
(
wchar_t
*
)
malloc
(
len
*
sizeof
(
wchar_t
));
if
(
unlikely
(
wide
==
NULL
))
return
NULL
;
MultiByteToWideChar
(
cp
,
0
,
mb
,
-
1
,
wide
,
len
);
char
*
utf8
=
FromWide
(
wide
);
free
(
wide
);
return
utf8
;
}
# ifdef UNICODE
# define FromT FromWide
# define ToT ToWide
...
...
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