| 1528 | |
| 1529 | |
| 1530 | void PluginList::startRemove(HWND hMessageBoxParent, |
| 1531 | ProgressDialog* progressDialog, |
| 1532 | PluginListView *pluginListView, |
| 1533 | CancelToken& cancelToken) |
| 1534 | { |
| 1535 | InstallParam *ip = new InstallParam; |
| 1536 | |
| 1537 | ip->pluginListView = pluginListView; |
| 1538 | ip->progressDialog = progressDialog; |
| 1539 | ip->pluginList = this; |
| 1540 | ip->hMessageBoxParent = hMessageBoxParent; |
| 1541 | ip->cancelToken = cancelToken; |
| 1542 | |
| 1543 | (void)::CreateThread(0, 0, (LPTHREAD_START_ROUTINE)PluginList::removeThreadProc, |
| 1544 | (LPVOID)ip, 0, 0); |
| 1545 | } |
| 1546 | |
| 1547 | UINT PluginList::removeThreadProc(LPVOID param) |
| 1548 | { |
nothing calls this directly
no outgoing calls
no test coverage detected