[PATCH] winmm: Use a thread to send driver messages on Win9x

Dmitry Timoshkov dmitry at baikal.ru
Thu Dec 1 00:52:59 CST 2016


Bruno Jesus <00cpxxx at gmail.com> wrote:

> +        if ((GetVersion() & 0xFF) < 5)
> +            win9x.is = TRUE;

A more correct check for win9x would be

if ((GetVersion() & 0x80000000)
    win9x.is = TRUE;

-- 
Dmitry.



More information about the wine-devel mailing list