Overview
C API (Core)
struct EventAccessContent { const void* real; const void* imag; UINT64 bytes; };
Notes
  • In this event, the Component is expected to provide the data structure that is pointed to by Event::data.

This is a request from the framework for the content of the Data object in generic form.

Fields

const void* real OUT
The real data.
const void* imag OUT
The imaginary data.
UINT64 bytes OUT
The number of bytes of real data.

Action

  • Set bytes to the number of real bytes in the generic form.
  • Set real to point at the real data (this can be NULL if bytes is zero).
  • If the generic form is complex, set imag to point at the imaginary data (this can be NULL if bytes is zero).

Example

C++ Source Code (against 1199)
// TODO // ok return C_OK;