Platform SDK: DLLs, Processes, and Threads |
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/2000: Requires Windows NT 3.51 SP3 or later.
Windows 95/98: Requires Windows 98.
Header: Declared in Winbase.h; include Windows.h.
Processes and Threads Overview, Process and Thread Functions, CreateFiber