Davy Kager
Davy Kager
Coming back to the suggestion that the problem is related to braille and UIA edit fields: I'm seeing similar prolems in OneNote (both desktop and Windows 10 app), Microsoft Edge...
Interesting. Will that patch make 2019.2? My tests thus far were with 2019.1 and 2019.1.1.
AFAIK this issue still exists with UIA disabled, but not on all computers that I've tried. I would like to do a more thorough test, including with UIA enabled, but...
I wrote a PowerShell script to transform liblouis.h.in into liblouis.h. This voids the need for windows/include/liblouis.h. The .def file can also go if we use __declspec(dllexport). That leaves windows/include/config.h. See...
IIRC it's done for `windows/liblouis.h` but not `windows/config.h`. Should we try to work on that?
I had some ambitions to work on this, but I'll have to do some catching up. Still, it's an interesting project since Windows is my favorite build. :-)
Is comparing strings more expensive than comparing integer constants in Python?
I just built a DLL with __declspec(dllexport) and __stdcall and according to [Dependency Walker](http://dependencywalker.com/) all looks fine. Going to do a bit more research. I'm unbiased as to which convention...
Also http://www.mingw.org/wiki/msvc_and_mingw_dlls touches on the problem of using MinGW tools with liblouis.dll from MSVC. If I read this correctly you can use either calling convention.
@egli Looks like MinGW exports any function prototype it finds in a header file, see attachment. From the article you linked to I gather that it can also use __declspec(dllexport)....