PDA

View Full Version : Launching and handling posix or win32 signals



Althor
19th November 2008, 14:33
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.

wysota
19th November 2008, 16:44
Qt doesn't handle such things - they are not portable. Use native API.

Althor
20th November 2008, 07:34
that meant.

A lot of thanks.