AlbertXingZhang

Results 10 comments of AlbertXingZhang

I tried to follow the convention of this source file. It seems it just uses Windows APIs in Unicode version.

I couldn't produce the issue constantly. But it did happen occasionally. I found it is blocked at `GetMessageW` if there is no message coming in and the whole GUI is...

If there is always at least one message in the message queue, I think you are right. `PeekMessageW` plus `GetMessageW` does the same job as `GetMessageW`. If there happens to...

Honestly, I don't know how GUI and its message queue work internally for Windows. Maybe only Microsoft knows. The bottom line for this change is giving a chance to check...

Hi @SteffenL, I'm sorry for being late. I was looking for how Microsoft implement [Application.DoEvents](https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.application.doevents). I think we tried to implement the same thing here. Here are my findings: 1....

Sorry, whenever I took my part from the original big project into a minimal repo, the issue never got reproduced. And the C++ examples in this repo don't have this...

The project is modularized. Although my module is written in pure C++, along with other modules written in WinForms and WPF, all of them coexist in the same process. And...

Sorry, it is very difficult to debug into the code. I could only use logs to locate the freezing cause before. When it froze, I remember I waited for a...

Sorry, I couldn't find the old logs about hanging currently. I can keep it running in a debugger but I'm not sure if I can capture the hanging issue on...

Hi @marcomagdy, thanks for your suggestion. I have made a new change to make it use the dynamic loader from libc when the one from ldd is not found in...