FramesetCallback Callback

Definition

(C++,dotnet) Handles callbacks for frameset operations, suitable for video or image capture devices.

public delegate int _FramesetCallback(IntPtr context, IntPtr frameset, string command);

Parameters

context IntPtr
in The callback context.

frameset IntPtr
in Pointer to the frameset involved in the callback event.

command string
in Commands associated with frameset handling or processing.

Returns

int
An error code.
See DevicesError file for the list of possible error codes.
typedef int (* id3DevicesFramesetCallback) (
    void * context,
    void * frameset,
    const char * command)

Parameters

context void *
in The callback context.

frameset void *
in Pointer to the frameset involved in the callback event.

command const char *
in Commands associated with frameset handling or processing.

Returns

int
An error code.
See id3DevicesError file for the list of possible error codes.