-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrigger_ctrl_c.c
47 lines (42 loc) · 950 Bytes
/
trigger_ctrl_c.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <stdlib.h>
#include <stdio.h>
#include <windows.h>
#include <stdbool.h>
#include <strsafe.h>
void logLastError()
{
LPTSTR errorText = NULL;
FormatMessage(
FORMAT_MESSAGE_FROM_SYSTEM
|FORMAT_MESSAGE_ALLOCATE_BUFFER
|FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
GetLastError(),
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR)&errorText,
0,
NULL);
if ( NULL != errorText )
{
printf("failure: %s", errorText);
LocalFree(errorText);
errorText = NULL;
}
}
void triggerCtrlC(int pid)
{
printf("Triggering CTRL+C on PID %d", pid);
FreeConsole();
if (AttachConsole(pid))
{
SetConsoleCtrlHandler(NULL, true);
GenerateConsoleCtrlEvent(CTRL_C_EVENT , 0);
}
else {
logLastError();
}
}
int main( int argc, const char* argv[] ) {
int pid = atoi(argv[1]);
triggerCtrlC(pid);
}