无法杀死进程InnoSetup

时间:2020-06-02 00:31:12

标签: inno-setup pascalscript

尝试通过InnoSetup安装程序终止进程。但是它仍然显示出进程正在运行的错误。

我用这个。

std::string

//BDictionary.h
template <typename Key, typename E>
class BDictionary : public Dictionary<Key, E> {

    ABag<KVpair<Key, E>>* dictionary;   //Dictionary object

    bool removeAny(E& returnValue) {     //The Dictionary method that accepts an E& value       
        KVpair<Key, E> pair;
        bool res = dictionary->removeTop(pair);
        if (res) returnValue = pair.second; // or however KVpair refers to its 2nd element
        return res;
    }
};

请帮助

0 个答案:

没有答案
相关问题