Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

FiberProc callback function

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


VOID CALLBACK FiberProc(
  _In_ PVOID lpParameter
);

Parameters

lpParameter [in]

The fiber data passed using the lpParameter parameter of the CreateFiber function.

Return value

This function does not return a value.

Examples

For an example, see Using Fibers.

Requirements

Minimum supported client

Windows XP [desktop apps only]

Minimum supported server

Windows Server 2003 [desktop apps only]

Header

WinBase.h (include Windows.h)

See also

CreateFiber
Fibers
Process and Thread Functions

 

 

Show:
© 2017 Microsoft