MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / KbQueueUserApc

Function KbQueueUserApc

User-Bridge/API/User-Bridge.cpp:1124–1131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1122 namespace Apc
1123 {
1124 BOOL WINAPI KbQueueUserApc(ULONG ThreadId, WdkTypes::PVOID ApcProc, WdkTypes::PVOID Argument)
1125 {
1126 KB_QUEUE_USER_APC_IN Input = {};
1127 Input.ThreadId = ThreadId;
1128 Input.ApcProc = ApcProc;
1129 Input.Argument = Argument;
1130 return KbSendRequest(Ctls::KbQueueUserApc, &Input, sizeof(Input));
1131 }
1132 }
1133}
1134

Callers

nothing calls this directly

Calls 1

KbSendRequestFunction · 0.85

Tested by

no test coverage detected