| 179 | } |
| 180 | |
| 181 | void CHttpGetDlg::InitFiber() |
| 182 | { |
| 183 | acl::acl_cpp_init(); |
| 184 | // 设置协程调度的事件引擎,同时将协程调度设为自动启动模式,不能在进程初始化时启动 |
| 185 | // 协程调试器,必须在界面消息引擎正常运行后才启动协程调度器! |
| 186 | acl::fiber::init(acl::FIBER_EVENT_T_WMSG, true); |
| 187 | acl::fiber::winapi_hook(); |
| 188 | } |
| 189 | |
| 190 | void CHttpGetDlg::OnBnClickedOk() |
| 191 | { |
nothing calls this directly
no test coverage detected