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
);
This function does not return a value.
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.
Processes and Threads Overview, Process and Thread Functions, CreateFiber