QueueUserAPC (kernel32)
Last changed: -122.174.26.240

.
Summary
Adds a user-mode asynchronous procedure call (APC) object to the APC queue of the specified thread.

C# Signature:

    [DllImport("kernel32.dll")]
    public static extern IntPtr QueueUserAPC(IntPtr pfnAPC, IntPtr hThread, IntPtr dwData);

Boo Signature:

[DllImport("kernel32.dll", SetLastError : true)]
def QueueUserAPC(pfnAPC as IntPtr, hThread as IntPtr, dwData as UInt32) as UInt32:
     pass

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation