Re: [Mingw-w64-public] windows.ui.notifications and Spellcheck.h

2020-12-19 Thread Biswapriyo Nath
How to build hexchat to include those plugins? I have been using the following command to build hexchat in msys2 and it builds without any error: meson build \ --buildtype plain \ -Dwith-libcanberra=false \ -Dwith-dbus=false \ -Dwith-perl=false Speaking of winrt, the windows.ui.notifications.h is

[Mingw-w64-public] windows.ui.notifications and Spellcheck.h

2020-12-19 Thread Zach Bacon
So I've taken to try and see if I can get hexchat on windows to compile and for the most part, it does compile, but there seems to be a few things that are missing to get every feature complete, there's a notification plugin for hexchat that makes use of native windows 10 toasts which uses wind

Re: [Mingw-w64-public] [PATCH] include/intrin: Implement `_rot{l, r}{8, 16}` functions

2020-12-19 Thread Jacek Caban
On 13.12.2020 12:53, Liu Hao wrote: They are declared in 'intrin.h' but were not defined anywhere. The implementations might be imperfect: If the second argument is <= zero or is >= the width of the first parameter, one of the shift counts will be out of range and cause undefined behavior. Some

Re: [Mingw-w64-public] [PATCH] include/intrin: Implement `_rot{l, r}{8, 16}` functions

2020-12-19 Thread Liu Hao
在 2020/12/19 下午2:53, Biswapriyo Nath 写道: > Can these be implemented with inline assembly (rol, ror)? That may be > one liner. This 8, 16 treatment is also needed for > _InterlockedExchange, _InterlockedOr etc. intrinsics. > > > Personally I think we had better avoid assembly for two reasons: On