GetFiberData (Compact 2013)

3/28/2014

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

See Also

Reference

Fiber Functions
ConvertThreadToFiber
CreateFiber