Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
56f1ed6a
Commit
56f1ed6a
authored
Apr 28, 2022
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 28, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Move Unicode conversion out of unicode_text_from_string.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
aa907299
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
18 deletions
+27
-18
clipboard.c
dlls/winex11.drv/clipboard.c
+27
-18
No files found.
dlls/winex11.drv/clipboard.c
View file @
56f1ed6a
...
@@ -687,25 +687,19 @@ static WCHAR* uri_to_dos(char *encodedURI)
...
@@ -687,25 +687,19 @@ static WCHAR* uri_to_dos(char *encodedURI)
*
*
* Convert a string in the specified encoding to CF_UNICODETEXT format.
* Convert a string in the specified encoding to CF_UNICODETEXT format.
*/
*/
static
WCHAR
*
unicode_text_from_string
(
UINT
codepage
,
const
void
*
data
,
size_t
size
,
size_t
*
ret_
size
)
static
void
*
unicode_text_from_string
(
WCHAR
*
ret
,
const
WCHAR
*
string
,
DWORD
count
,
size_t
*
size
)
{
{
DWORD
i
,
j
,
count
;
DWORD
i
,
j
;
WCHAR
*
strW
;
count
=
MultiByteToWideChar
(
codepage
,
0
,
data
,
size
,
NULL
,
0
);
if
(
!
(
strW
=
malloc
(
(
count
*
2
+
1
)
*
sizeof
(
WCHAR
)
)))
return
0
;
MultiByteToWideChar
(
codepage
,
0
,
data
,
size
,
strW
+
count
,
count
);
for
(
i
=
j
=
0
;
i
<
count
;
i
++
)
for
(
i
=
j
=
0
;
i
<
count
;
i
++
)
{
{
if
(
str
W
[
i
+
count
]
==
'\n'
&&
(
!
i
||
strW
[
i
+
count
-
1
]
!=
'\r'
))
strW
[
j
++
]
=
'\r'
;
if
(
str
ing
[
i
]
==
'\n'
&&
(
!
i
||
string
[
i
-
1
]
!=
'\r'
))
ret
[
j
++
]
=
'\r'
;
strW
[
j
++
]
=
strW
[
i
+
count
];
ret
[
j
++
]
=
string
[
i
];
}
}
strW
[
j
++
]
=
0
;
ret
[
j
++
]
=
0
;
*
ret_
size
=
j
*
sizeof
(
WCHAR
);
*
size
=
j
*
sizeof
(
WCHAR
);
TRACE
(
"returning %s
\n
"
,
debugstr_wn
(
strW
,
j
-
1
));
TRACE
(
"returning %s
\n
"
,
debugstr_wn
(
ret
,
j
-
1
));
return
strW
;
return
ret
;
}
}
...
@@ -716,7 +710,12 @@ static WCHAR *unicode_text_from_string( UINT codepage, const void *data, size_t
...
@@ -716,7 +710,12 @@ static WCHAR *unicode_text_from_string( UINT codepage, const void *data, size_t
*/
*/
static
void
*
import_string
(
Atom
type
,
const
void
*
data
,
size_t
size
,
size_t
*
ret_size
)
static
void
*
import_string
(
Atom
type
,
const
void
*
data
,
size_t
size
,
size_t
*
ret_size
)
{
{
return
unicode_text_from_string
(
28591
,
data
,
size
,
ret_size
);
DWORD
str_size
;
WCHAR
*
ret
;
if
(
!
(
ret
=
malloc
(
(
size
*
2
+
1
)
*
sizeof
(
WCHAR
)
)))
return
NULL
;
str_size
=
MultiByteToWideChar
(
28591
,
0
,
data
,
size
,
ret
+
size
,
size
);
return
unicode_text_from_string
(
ret
,
ret
+
size
,
str_size
,
ret_size
);
}
}
...
@@ -727,7 +726,12 @@ static void *import_string( Atom type, const void *data, size_t size, size_t *re
...
@@ -727,7 +726,12 @@ static void *import_string( Atom type, const void *data, size_t size, size_t *re
*/
*/
static
void
*
import_utf8_string
(
Atom
type
,
const
void
*
data
,
size_t
size
,
size_t
*
ret_size
)
static
void
*
import_utf8_string
(
Atom
type
,
const
void
*
data
,
size_t
size
,
size_t
*
ret_size
)
{
{
return
unicode_text_from_string
(
CP_UTF8
,
data
,
size
,
ret_size
);
DWORD
str_size
;
WCHAR
*
ret
;
if
(
!
(
ret
=
malloc
(
(
size
*
2
+
1
)
*
sizeof
(
WCHAR
)
)))
return
NULL
;
RtlUTF8ToUnicodeN
(
ret
+
size
,
size
*
sizeof
(
WCHAR
),
&
str_size
,
data
,
size
);
return
unicode_text_from_string
(
ret
,
ret
+
size
,
str_size
/
sizeof
(
WCHAR
),
ret_size
);
}
}
...
@@ -741,7 +745,8 @@ static void *import_compound_text( Atom type, const void *data, size_t size, siz
...
@@ -741,7 +745,8 @@ static void *import_compound_text( Atom type, const void *data, size_t size, siz
char
**
srcstr
;
char
**
srcstr
;
int
count
;
int
count
;
XTextProperty
txtprop
;
XTextProperty
txtprop
;
void
*
ret
;
DWORD
len
;
WCHAR
*
ret
;
txtprop
.
value
=
(
BYTE
*
)
data
;
txtprop
.
value
=
(
BYTE
*
)
data
;
txtprop
.
nitems
=
size
;
txtprop
.
nitems
=
size
;
...
@@ -750,7 +755,11 @@ static void *import_compound_text( Atom type, const void *data, size_t size, siz
...
@@ -750,7 +755,11 @@ static void *import_compound_text( Atom type, const void *data, size_t size, siz
if
(
XmbTextPropertyToTextList
(
thread_display
(),
&
txtprop
,
&
srcstr
,
&
count
)
!=
Success
)
return
0
;
if
(
XmbTextPropertyToTextList
(
thread_display
(),
&
txtprop
,
&
srcstr
,
&
count
)
!=
Success
)
return
0
;
if
(
!
count
)
return
0
;
if
(
!
count
)
return
0
;
ret
=
unicode_text_from_string
(
CP_UNIXCP
,
srcstr
[
0
],
strlen
(
srcstr
[
0
])
+
1
,
ret_size
);
len
=
strlen
(
srcstr
[
0
])
+
1
;
if
(
!
(
ret
=
malloc
(
(
len
*
2
+
1
)
*
sizeof
(
WCHAR
)
)))
return
NULL
;
count
=
MultiByteToWideChar
(
CP_UNIXCP
,
0
,
srcstr
[
0
],
len
,
ret
+
len
,
len
);
ret
=
unicode_text_from_string
(
ret
,
ret
+
len
,
count
,
ret_size
);
XFreeStringList
(
srcstr
);
XFreeStringList
(
srcstr
);
return
ret
;
return
ret
;
}
}
...
...
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