Share via


GetFiberData

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This function returns the fiber data associated with the current fiber.

Syntax

LPVOID WINAPI GetFiberData(void);

Parameters

None.

Return Value

The fiber data for the currently running fiber.

Remarks

The fiber data is the value passed to the CreateFiber or ConvertThreadToFiber function in the lpParameter parameter. This value is also received as the parameter to the fiber function and is stored as part of the fiber state information.

Requirements

Header winbase.h
Library coredll.lib
Windows Embedded CE Windows CE .NET 4.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

Fiber Functions
ConvertThreadToFiber
CreateFiber