PFIBER_START_ROUTINE callback function (winbase.h)
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.
Syntax
PFIBER_START_ROUTINE PfiberStartRoutine;
void PfiberStartRoutine(
LPVOID lpFiberParameter
)
{...}
Parameters
lpFiberParameter
Return value
None
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Target Platform | Windows |
Header | winbase.h (include Windows.h) |