Platform SDK: DLLs, Processes, and Threads

APCProc

The APCProc function is an application-defined completion routine. Specify this address when calling the QueueUserAPC function. The PAPCFUNC type defines a pointer to this callback function. APCProc is a placeholder for the application-defined function name.

VOID CALLBACK APCProc(
  ULONG_PTR dwParam
);

Parameters

dwParam
[in] Receives the data passed to the function using the dwData parameter of the QueueUserAPC function.

Return Value

This function does not return a value.

Requirements

  Windows NT/2000: Requires Windows NT 4.0 or later.
  Windows 95/98: Requires Windows 95 or later.
  Header: Declared in Winbase.h; include Windows.h.

See Also

Synchronization Overview, Synchronization Functions, QueueUserAPC