I have Qt Application that executes a process when you click on a button.
I used this method QProcess::startDetached(...,qint64 * pid) : http://doc.qt.io/qt-5/qprocess.html#startDetached
The returned value is a pid and I would like to do a kill(pid, SIGINT) in windows.
It works well on Mac but I don't know how to do that in windows.