nim_duilib/ui_components/modal_wnd/async_do_modal.cpp
jiajia_deng 4933d1f2bc Remove dependency on shared
Signed-off-by: jiajia_deng <2894220@gmail.com>
2019-09-20 16:27:58 +08:00

13 lines
286 B
C++

#include "stdafx.h"
#include "async_do_modal.h"
#include "async_modal_runner.h"
bool AsyncDoModal(ModalWndBase *dlg)
{
return AsyncModalRunnerManager::GetInstance()->DoModal(dlg);
}
void CancelAllAsyncModalDialogs()
{
AsyncModalRunnerManager::GetInstance()->CancelAllThreads();
}