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

The Data should return a filled EventAccessStructure in Event::data. structure should be the data object's structure in the form of a text string. The format of the text string can be specified by the Data component, since the string will only be interpreted by another component of the same class and release.

Fields

const char* structure OUT
The object structure string.

Action

  • Set structure to point to a text string that fully specifies the Data structure.

Example

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