11 Apr
2018
11 Apr
'18
8:13 a.m.
On Tue, Apr 10, 2018 at 04:25:54PM -0500, Sergio Gómez Del Real wrote:
Signed-off-by: Sergio Gómez Del Real <sdelreal(a)codeweavers.com> --- libs/port/mbtowc.c | 14 +- tools/make_unicode | 423 +++++++++++++++++++++++++++++++++++++++++++++-------- 2 files changed, 370 insertions(+), 67 deletions(-)
What this patch is doing is to add a 'compat' flag to wine_decompose() and then always call that function with that flag set. So essentially you've added a bunch of dead code (the compat not set case). The patch needs to make some material difference to the Wine's implementation of the Win32 api, preferably demonstrated by a test; it currently does not do that. Similar comments could be made about patch [2/2]. Huw.