最佳答案
我得到一个“转移控制旁路初始化:”错误时,我尝试建立以下交换机:
switch (retrycancel)
{
case 4: //The user pressed RETRY
//Enumerate all visible windows and store handle and caption in "windows"
std::vector<MainHandles::window_data> windows = MainHandles().enum_windows().get_results();
break;
case 2:
//code
}
它与我调用我的枚举函数有关。如果不允许从交换机内调用函数,是否有解决此类问题的方法?