Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
7655fd40
Commit
7655fd40
authored
Jun 08, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
33800c4c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
UnicodeTool.h
jlib/win32/UnicodeTool.h
+4
-4
No files found.
jlib/win32/UnicodeTool.h
View file @
7655fd40
...
...
@@ -20,7 +20,7 @@ namespace win32
inline
std
::
wstring
mbcs_to_utf16
(
const
std
::
string
&
mbcs
)
{
std
::
wstring
res
=
L""
;
size_
t
request_size
=
MultiByteToWideChar
(
CP_ACP
,
0
,
mbcs
.
c_str
(),
-
1
,
NULL
,
0
);
in
t
request_size
=
MultiByteToWideChar
(
CP_ACP
,
0
,
mbcs
.
c_str
(),
-
1
,
NULL
,
0
);
if
(
0
<
request_size
)
{
auto
buff
=
new
wchar_t
[
request_size
];
MultiByteToWideChar
(
CP_ACP
,
0
,
mbcs
.
c_str
(),
-
1
,
buff
,
request_size
);
...
...
@@ -32,7 +32,7 @@ inline std::wstring mbcs_to_utf16(const std::string& mbcs) {
inline
std
::
string
utf16_to_mbcs
(
const
std
::
wstring
&
u16
)
{
std
::
string
res
=
""
;
size_
t
request_size
=
WideCharToMultiByte
(
CP_ACP
,
0
,
u16
.
c_str
(),
-
1
,
0
,
0
,
0
,
0
);
in
t
request_size
=
WideCharToMultiByte
(
CP_ACP
,
0
,
u16
.
c_str
(),
-
1
,
0
,
0
,
0
,
0
);
if
(
0
<
request_size
)
{
auto
buff
=
new
char
[
request_size
];
WideCharToMultiByte
(
CP_ACP
,
0
,
u16
.
c_str
(),
-
1
,
buff
,
request_size
,
0
,
0
);
...
...
@@ -44,7 +44,7 @@ inline std::string utf16_to_mbcs(const std::wstring& u16) {
inline
std
::
string
utf16_to_utf8
(
const
std
::
wstring
&
u16
)
{
std
::
string
res
=
""
;
size_
t
request_size
=
WideCharToMultiByte
(
CP_UTF8
,
0
,
u16
.
c_str
(),
-
1
,
0
,
0
,
0
,
0
);
in
t
request_size
=
WideCharToMultiByte
(
CP_UTF8
,
0
,
u16
.
c_str
(),
-
1
,
0
,
0
,
0
,
0
);
if
(
0
<
request_size
)
{
auto
buff
=
new
char
[
request_size
];
WideCharToMultiByte
(
CP_UTF8
,
0
,
u16
.
c_str
(),
-
1
,
buff
,
request_size
,
0
,
0
);
...
...
@@ -60,7 +60,7 @@ inline std::string mbcs_to_utf8(const std::string& mbcs) {
inline
std
::
wstring
utf8_to_utf16
(
const
std
::
string
u8
)
{
std
::
wstring
res
=
L""
;
size_
t
request_size
=
MultiByteToWideChar
(
CP_UTF8
,
0
,
u8
.
c_str
(),
-
1
,
NULL
,
0
);
in
t
request_size
=
MultiByteToWideChar
(
CP_UTF8
,
0
,
u8
.
c_str
(),
-
1
,
NULL
,
0
);
if
(
0
<
request_size
)
{
auto
buff
=
new
wchar_t
[
request_size
];
MultiByteToWideChar
(
CP_UTF8
,
0
,
u8
.
c_str
(),
-
1
,
buff
,
request_size
);
...
...
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