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
25978317
Commit
25978317
authored
Aug 30, 2021
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 30, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Fix ASCII / ANSI mixups in comments.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a16760ac
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
21 deletions
+21
-21
assoc.c
dlls/shlwapi/assoc.c
+1
-1
ordinal.c
dlls/shlwapi/ordinal.c
+3
-3
string.c
dlls/shlwapi/string.c
+17
-17
No files found.
dlls/shlwapi/assoc.c
View file @
25978317
...
...
@@ -39,7 +39,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(shell);
/*************************************************************************
* SHLWAPI_ParamAToW
*
* Internal helper function: Convert A
SCI
I parameter to Unicode.
* Internal helper function: Convert A
NS
I parameter to Unicode.
*/
static
BOOL
SHLWAPI_ParamAToW
(
LPCSTR
lpszParam
,
LPWSTR
lpszBuff
,
DWORD
dwLen
,
LPWSTR
*
lpszOut
)
...
...
dlls/shlwapi/ordinal.c
View file @
25978317
...
...
@@ -1253,7 +1253,7 @@ static BOOL CALLBACK SHLWAPI_EnumChildProc(HWND hWnd, LPARAM lParam)
* Nothing.
*
* NOTES
* The appropriate A
SCI
I or Unicode function is called for the window.
* The appropriate A
NS
I or Unicode function is called for the window.
*/
void
WINAPI
SHPropagateMessage
(
HWND
hWnd
,
UINT
uiMsgId
,
WPARAM
wParam
,
LPARAM
lParam
,
BOOL
bSend
)
{
...
...
@@ -2038,7 +2038,7 @@ void WINAPI SHUnregisterClassesW(HINSTANCE hInst, LPCWSTR *lppClasses, INT iCoun
/*************************************************************************
* @ [SHLWAPI.240]
*
* Call The correct (A
scii
/Unicode) default window procedure for a window.
* Call The correct (A
NSI
/Unicode) default window procedure for a window.
*
* PARAMS
* hWnd [I] Window to call the default procedure for
...
...
@@ -2264,7 +2264,7 @@ VOID WINAPI SHWeakReleaseInterface(IUnknown *lpDest, IUnknown **lppUnknown)
/*************************************************************************
* @ [SHLWAPI.269]
*
* Convert an A
SCI
I string of a CLSID into a CLSID.
* Convert an A
NS
I string of a CLSID into a CLSID.
*
* PARAMS
* idstr [I] String representing a CLSID in registry format
...
...
dlls/shlwapi/string.c
View file @
25978317
...
...
@@ -539,7 +539,7 @@ LPWSTR WINAPI StrNCatW(LPWSTR lpszStr, LPCWSTR lpszCat, INT cchMax)
/*************************************************************************
* _SHStrDupAA [INTERNAL]
*
* Duplicates a A
SCII string to ASCI
I. The destination buffer is allocated.
* Duplicates a A
NSI string to ANS
I. The destination buffer is allocated.
*/
static
HRESULT
_SHStrDupAA
(
LPCSTR
src
,
LPSTR
*
dest
)
{
...
...
@@ -606,7 +606,7 @@ HRESULT WINAPI SHStrDupA(LPCSTR lpszStr, LPWSTR * lppszDest)
/*************************************************************************
* _SHStrDupAW [INTERNAL]
*
* Duplicates a UNICODE to a A
SCI
I string. The destination buffer is allocated.
* Duplicates a UNICODE to a A
NS
I string. The destination buffer is allocated.
*/
static
HRESULT
_SHStrDupAW
(
LPCWSTR
src
,
LPSTR
*
dest
)
{
...
...
@@ -942,7 +942,7 @@ LPSTR WINAPI StrFormatByteSize64A(LONGLONG llBytes, LPSTR lpszDest, UINT cchMax)
* lpszDest.
*
* NOTES
* The A
scii
and Unicode versions of this function accept a different
* The A
NSI
and Unicode versions of this function accept a different
* integer type for dwBytes. See StrFormatByteSize64A().
*/
LPSTR
WINAPI
StrFormatByteSizeA
(
DWORD
dwBytes
,
LPSTR
lpszDest
,
UINT
cchMax
)
...
...
@@ -1020,11 +1020,11 @@ WCHAR WINAPI SHStripMneumonicW(LPCWSTR lpszStr)
/*************************************************************************
* @ [SHLWAPI.216]
*
* Convert an A
scii
string to Unicode.
* Convert an A
NSI
string to Unicode.
*
* PARAMS
* dwCp [I] Code page for the conversion
* lpSrcStr [I] Source A
scii
string to convert
* lpSrcStr [I] Source A
NSI
string to convert
* lpDstStr [O] Destination for converted Unicode string
* iLen [I] Length of lpDstStr
*
...
...
@@ -1043,10 +1043,10 @@ DWORD WINAPI SHAnsiToUnicodeCP(DWORD dwCp, LPCSTR lpSrcStr, LPWSTR lpDstStr, int
/*************************************************************************
* @ [SHLWAPI.215]
*
* Convert an A
scii
string to Unicode.
* Convert an A
NSI
string to Unicode.
*
* PARAMS
* lpSrcStr [I] Source A
scii
string to convert
* lpSrcStr [I] Source A
NSI
string to convert
* lpDstStr [O] Destination for converted Unicode string
* iLen [I] Length of lpDstStr
*
...
...
@@ -1064,12 +1064,12 @@ DWORD WINAPI SHAnsiToUnicode(LPCSTR lpSrcStr, LPWSTR lpDstStr, int iLen)
/*************************************************************************
* @ [SHLWAPI.218]
*
* Convert a Unicode string to A
scii
.
* Convert a Unicode string to A
NSI
.
*
* PARAMS
* CodePage [I] Code page to use for the conversion
* lpSrcStr [I] Source Unicode string to convert
* lpDstStr [O] Destination for converted A
scii
string
* lpDstStr [O] Destination for converted A
NSI
string
* dstlen [I] Length of buffer at lpDstStr
*
* RETURNS
...
...
@@ -1167,11 +1167,11 @@ DWORD WINAPI SHUnicodeToAnsiCP(UINT CodePage, LPCWSTR lpSrcStr, LPSTR lpDstStr,
/*************************************************************************
* @ [SHLWAPI.217]
*
* Convert a Unicode string to A
scii
.
* Convert a Unicode string to A
NSI
.
*
* PARAMS
* lpSrcStr [I] Source Unicode string to convert
* lpDstStr [O] Destination for converted A
scii
string
* lpDstStr [O] Destination for converted A
NSI
string
* iLen [O] Length of lpDstStr in characters
*
* RETURNS
...
...
@@ -1188,15 +1188,15 @@ INT WINAPI SHUnicodeToAnsi(LPCWSTR lpSrcStr, LPSTR lpDstStr, INT iLen)
/*************************************************************************
* @ [SHLWAPI.364]
*
* Determine if an A
scii
string converts to Unicode and back identically.
* Determine if an A
NSI
string converts to Unicode and back identically.
*
* PARAMS
* lpSrcStr [I] Source Unicode string to convert
* lpDst [O] Destination for resulting A
scii
string
* lpDst [O] Destination for resulting A
NSI
string
* iLen [I] Length of lpDst in characters
*
* RETURNS
* TRUE, since A
scii
strings always convert identically.
* TRUE, since A
NSI
strings always convert identically.
*/
BOOL
WINAPI
DoesStringRoundTripA
(
LPCSTR
lpSrcStr
,
LPSTR
lpDst
,
INT
iLen
)
{
...
...
@@ -1207,15 +1207,15 @@ BOOL WINAPI DoesStringRoundTripA(LPCSTR lpSrcStr, LPSTR lpDst, INT iLen)
/*************************************************************************
* @ [SHLWAPI.365]
*
* Determine if a Unicode string converts to A
scii
and back identically.
* Determine if a Unicode string converts to A
NSI
and back identically.
*
* PARAMS
* lpSrcStr [I] Source Unicode string to convert
* lpDst [O] Destination for resulting A
scii
string
* lpDst [O] Destination for resulting A
NSI
string
* iLen [I] Length of lpDst in characters
*
* RETURNS
* TRUE, if lpSrcStr converts to A
scii
and back identically,
* TRUE, if lpSrcStr converts to A
NSI
and back identically,
* FALSE otherwise.
*/
BOOL
WINAPI
DoesStringRoundTripW
(
LPCWSTR
lpSrcStr
,
LPSTR
lpDst
,
INT
iLen
)
...
...
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