Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直无法弄清楚IsGUIThread真正的作用......我什至查看了 ReactOS 源代码,但我无法弄清楚。
IsGUIThread
任何想法为什么你可以称之为?
IsGUIThread告诉您当前线程是否是 GUI 线程 - 即正在运行消息循环的线程。
它实际上做的是检查当前线程是否有 GUI 线程信息(参见GetGUIThreadInfoMSDN.
GetGUIThreadInfo
我从来没有使用过这个函数,但我猜一个可能的用途是如果当前线程是 GUI 线程,则允许代码将慢速任务推迟到工作线程。