Sends a Ctrl+C or a Ctrl+Break signal exception to another process.

#define INCL_DOSEXCEPTIONS
#include <os2.h>

PID       pid;        /*  The identification of the process that is to receive the signal exception. */
ULONG     exception;  /*  The number of the signal exception to send. */
APIRET    ulrc;       /*  Return Code. */

ulrc = DosSendSignalException(pid, exception);


[Back] [Next]