FiberProc

The FiberProc function is an application-defined function used with the CreateFiber function. It serves as the starting address for a fiber. The LPFIBER_START_ROUTINE type defines a pointer to this callback function. FiberProc is a placeholder for the application-defined function name.

VOID CALLBACK FiberProc(
  PVOID lpParameter   // fiber data
);
 

Parameters

lpParameter
Receives the fiber data passed to the function using the lpParameter parameter of the CreateFiber function.

Return Values

This function does not return a value.

QuickInfo

  Windows NT: Requires version 3.51 SP3 or later.
  Windows: Requires Windows 98 or later.
  Windows CE: Unsupported.
  Header: Declared in winbase.h.
  Import Library: User-defined.

See Also

Processes and Threads Overview, Process and Thread Functions, CreateFiber