次の方法で共有


FiberProc (Compact 2013)

3/28/2014

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

See Also

Reference

Fiber Functions
CreateFiber