Overview
C API (Component Interface)
struct EventGenericStructure { const char* structure; TYPE type; };

The Data should set its Structure from the passed text string (see EVENT_GENERIC_STRUCTURE_GET details of the text string's format). Some information may be included as flags in type.

Fields

const char* structure IN
The object structure string.
TYPE type IN/OUT
Flags from TYPE_CPXFMT_MASK and TYPE_ORDER_MASK may be included, here, in which case the string will not contain this information. On return, type must be filled with the full numeric type implied by the structure string, including all storage format flags.

Action

  • Set the Data structure from the text string pointed to by structure and the TYPE constant type.
  • Set type for return.

Example

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