Platform SDK: DLLs, Processes, and Threads

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
[in] 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.

Requirements

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

See Also

Processes and Threads Overview, Process and Thread Functions, CreateFiber