Launching and handling posix or win32 signals
Hi
Do you know if it is possible to launch and catch posix or win32 signals? Is there some qt class to do it?
For example, you could want to launch a win32 signal from a qt application and catch it on a non-qt application. I could do it by using win32 api but is there a cross-platform qt class?
Regards.
Re: Launching and handling posix or win32 signals
Qt doesn't handle such things - they are not portable. Use native API.
Re: Launching and handling posix or win32 signals
that meant.
A lot of thanks.