Queueuserapc

[DllImport("Kernel32.dll")][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool QueueUserAPC(IntPtr pfnAPC,
   IntPtr hThread,
   UIntPtr dwData
);

Microsoft documentation: Link

Last updated