How do I stop Windows from blocking the program during a window drag or menu button being held down?

后端 未结 3 1324
旧巷少年郎
旧巷少年郎 2020-12-06 01:49

I am novice with Win32, and I have been pursuing a problem (if it can be called a problem at all) with Windows blocking your program\'s flow during the event when a user gra

3条回答
  •  抹茶落季
    2020-12-06 02:12

    If multi-threading can fix it, then that is interesting but I wonder if I can get it to work on single-core processors. And I have read about hooks, but the MSDN page is still hard for me to interpret.

    You can use multiple threads on a single-core processor. Performance would be better on multi-core systems, but that shouldn't prevent you from writing multithreaded applications. Anyway, go for it.

提交回复
热议问题