Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
f7c33804
Commit
f7c33804
authored
Dec 05, 2018
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Forward SHUnicodeToUnicode() to shcore.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
929058a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
16 deletions
+1
-16
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-1
string.c
dlls/shlwapi/string.c
+0
-15
No files found.
dlls/shlwapi/shlwapi.spec
View file @
f7c33804
...
...
@@ -343,7 +343,7 @@
343 stdcall -noname SHRegGetCLSIDKeyA(ptr str long long ptr)
344 stdcall -noname SHRegGetCLSIDKeyW(ptr wstr long long ptr)
345 stdcall -ordinal SHAnsiToAnsi(str ptr long)
346 stdcall -ordinal SHUnicodeToUnicode(wstr ptr long)
346 stdcall -ordinal SHUnicodeToUnicode(wstr ptr long)
shcore.SHUnicodeToUnicode
347 stdcall -noname RegDeleteValueWrapW(long wstr) advapi32.RegDeleteValueW
348 stub -noname SHGetFileDescriptionW
349 stub -noname SHGetFileDescriptionA
...
...
dlls/shlwapi/string.c
View file @
f7c33804
...
...
@@ -2774,21 +2774,6 @@ DWORD WINAPI SHAnsiToAnsi(LPCSTR lpszSrc, LPSTR lpszDst, int iLen)
}
/*************************************************************************
* @ [SHLWAPI.346]
*
* Unicode version of SSHAnsiToAnsi.
*/
DWORD
WINAPI
SHUnicodeToUnicode
(
LPCWSTR
lpszSrc
,
LPWSTR
lpszDst
,
int
iLen
)
{
LPWSTR
lpszRet
;
TRACE
(
"(%s,%p,0x%08x)
\n
"
,
debugstr_w
(
lpszSrc
),
lpszDst
,
iLen
);
lpszRet
=
StrCpyNXW
(
lpszDst
,
lpszSrc
,
iLen
);
return
lpszRet
-
lpszDst
+
1
;
}
/*************************************************************************
* @ [SHLWAPI.364]
*
* Determine if an Ascii string converts to Unicode and back identically.
...
...
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