Commit c10d9d10 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

shell32: Fix a couple of ASCII / ANSI mixups in comments.

parent b60e4064
......@@ -680,7 +680,7 @@ static HRESULT Stream_LoadLocation( IStream *stm,
*
* 0 Length of the block (4 bytes, usually 0x314)
* 4 tag (dword)
* 8 string data in ASCII
* 8 string data in ANSI
* 8+0x104 string data in UNICODE
*
* In the original Win32 implementation the buffers are not initialized
......
/*
* The parameters of many functions changes between different OS versions
* (NT uses Unicode strings, 95 uses ASCII strings)
* (NT uses Unicode strings, 95 uses ANSI strings)
*
* Copyright 1997 Marcus Meissner
* 1998 Jürgen Schmied
......
......@@ -819,9 +819,9 @@ static DWORD SHFindAttrW(LPCWSTR pName, BOOL fileOnly)
*
* SHNameTranslate HelperFunction for SHFileOperationA
*
* Translates a list of 0 terminated ASCII strings into Unicode. If *wString
* Translates a list of 0 terminated ANSI strings into Unicode. If *wString
* is NULL, only the necessary size of the string is determined and returned,
* otherwise the ASCII strings are copied into it and the buffer is increased
* otherwise the ANSI strings are copied into it and the buffer is increased
* to point to the location after the final 0 termination char.
*/
static DWORD SHNameTranslate(LPWSTR* wString, LPCWSTR* pWToFrom, BOOL more)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment