Corrected the alignment of unicode message table strings in wmc, and

switched to unicode for message strings, so that FormatMessage() now
works.
This commit is contained in:
Martin Fuchs 2002-10-19 17:15:00 +00:00 committed by Alexandre Julliard
parent b3332d74b0
commit 3f44167715
2 changed files with 6 additions and 3 deletions

View File

@ -117,7 +117,7 @@ LINTS = $(C_SRCS:.c=.ln)
$(AS) -o $@ $<
.mc.mc.rc:
$(LDPATH) $(WMC) -i -H /dev/null -o $@ $<
$(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
.rc.res:
$(LDPATH) $(WRC) $(WRCFLAGS) $(DIVINCL) -o $@ -r $<

View File

@ -359,6 +359,9 @@ static char *make_string(WCHAR *uc, int len, int codepage)
b = 0;
}
}
if (unicodeout)
len = (len + 1) & ~1;
else
len = (len + 3) & ~3;
for(; i < len; i++)
{