Commit 182a8d88 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

winspool.drv: Fix ASCII / ANSI mixups in comments and TRACE() messages.

parent ba7ca2d8
...@@ -4047,7 +4047,7 @@ BOOL WINAPI ResetPrinterW(HANDLE hPrinter, LPPRINTER_DEFAULTSW pDefault) ...@@ -4047,7 +4047,7 @@ BOOL WINAPI ResetPrinterW(HANDLE hPrinter, LPPRINTER_DEFAULTSW pDefault)
* Get ValueName from hkey storing result in out * Get ValueName from hkey storing result in out
* when the Value in the registry has only a filename, use driverdir as prefix * when the Value in the registry has only a filename, use driverdir as prefix
* outlen is space left in out * outlen is space left in out
* String is stored either as unicode or ascii * String is stored either as unicode or ansi
* *
*/ */
...@@ -4180,7 +4180,7 @@ static void WINSPOOL_GetDefaultDevMode(LPBYTE ptr, DWORD buflen, DWORD *needed) ...@@ -4180,7 +4180,7 @@ static void WINSPOOL_GetDefaultDevMode(LPBYTE ptr, DWORD buflen, DWORD *needed)
* WINSPOOL_GetDevModeFromReg * WINSPOOL_GetDevModeFromReg
* *
* Get ValueName from hkey storing result in ptr. buflen is space left in ptr * Get ValueName from hkey storing result in ptr. buflen is space left in ptr
* DevMode is stored either as unicode or ascii. * DevMode is stored either as unicode or ansi.
*/ */
static BOOL WINSPOOL_GetDevModeFromReg(HKEY hkey, LPCWSTR ValueName, static BOOL WINSPOOL_GetDevModeFromReg(HKEY hkey, LPCWSTR ValueName,
LPBYTE ptr, LPBYTE ptr,
...@@ -6770,7 +6770,7 @@ DWORD WINAPI EnumPrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName, ...@@ -6770,7 +6770,7 @@ DWORD WINAPI EnumPrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName,
memcpy (ppev->pValueName, pBuffer, len); memcpy (ppev->pValueName, pBuffer, len);
TRACE ("Converted '%s' from Unicode to ASCII\n", pBuffer); TRACE ("Converted '%s' from Unicode to ANSI\n", pBuffer);
if (ppev->dwType != REG_SZ && ppev->dwType != REG_EXPAND_SZ && if (ppev->dwType != REG_SZ && ppev->dwType != REG_EXPAND_SZ &&
ppev->dwType != REG_MULTI_SZ) ppev->dwType != REG_MULTI_SZ)
...@@ -6789,7 +6789,7 @@ DWORD WINAPI EnumPrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName, ...@@ -6789,7 +6789,7 @@ DWORD WINAPI EnumPrinterDataExA(HANDLE hPrinter, LPCSTR pKeyName,
memcpy (ppev->pData, pBuffer, len); memcpy (ppev->pData, pBuffer, len);
TRACE ("Converted '%s' from Unicode to ASCII\n", pBuffer); TRACE ("Converted '%s' from Unicode to ANSI\n", pBuffer);
TRACE (" (only first string of REG_MULTI_SZ printed)\n"); TRACE (" (only first string of REG_MULTI_SZ printed)\n");
} }
......
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