MCPcopy Create free account
hub / github.com/bruderstein/nppPluginManager / startRemove

Method startRemove

pluginManager/src/PluginList.cpp:1530–1545  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1528
1529
1530void 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
1547UINT PluginList::removeThreadProc(LPVOID param)
1548{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected