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 |
|
See also