FiberProc (Windows CE 5.0)

Send Feedback

This 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);

Parameters

  • lpParameter
    [in] Receives the fiber data passed to the function using the lpParameter parameter of the CreateFiber function.

Return Values

None.

Remarks

Exceptions in FiberProc are not caught by the thread switching to it.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Windows.h.
Link Library: Coredll.lib.

See Also

CreateFiber

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.