FiberProc (Windows Embedded CE 6.0)
1/6/2010
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.
Syntax
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 Value
None.
Remarks
Exceptions in FiberProc are not caught by the thread switching to it.
Requirements
Header | windows.h |
Library | coredll.lib |
Windows Embedded CE | Windows CE .NET 4.0 and later |