Commit 45fb4ac4 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msi: Fix ASCII / ANSI mixups in comments.

parent ab9ba996
...@@ -735,7 +735,7 @@ struct tagMSIMIME ...@@ -735,7 +735,7 @@ struct tagMSIMIME
#define MSIHANDLE_MAGIC 0x4d434923 #define MSIHANDLE_MAGIC 0x4d434923
/* handle unicode/ascii output in the Msi* API functions */ /* handle unicode/ansi output in the Msi* API functions */
typedef struct { typedef struct {
BOOL unicode; BOOL unicode;
union { union {
......
...@@ -1806,7 +1806,7 @@ INT MSI_ProcessMessageVerbatim(MSIPACKAGE *package, INSTALLMESSAGE eMessageType, ...@@ -1806,7 +1806,7 @@ INT MSI_ProcessMessageVerbatim(MSIPACKAGE *package, INSTALLMESSAGE eMessageType,
MSI_FormatRecordW(package, record, message, &len); MSI_FormatRecordW(package, record, message, &len);
} }
/* convert it to ASCII */ /* convert it to ANSI */
len = WideCharToMultiByte( CP_ACP, 0, message, -1, NULL, 0, NULL, NULL ); len = WideCharToMultiByte( CP_ACP, 0, message, -1, NULL, 0, NULL, NULL );
msg = msi_alloc( len ); msg = msi_alloc( len );
WideCharToMultiByte( CP_ACP, 0, message, -1, msg, len, NULL, NULL ); WideCharToMultiByte( CP_ACP, 0, message, -1, msg, len, NULL, NULL );
......
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