Next: , Up: Byte Data Library Types   [Index]


7.16.2.1 struct x1f4_dxdata_type

typedef struct x1f4_dxdata_type {
    char *string;
    unsigned call, length;
} x1f4_dxdata_type;

The x1f4_dxdata_type record represents objects of the ‘data’ type. The objects should be treated as read-only (with the noted exception of the call field) and should be modified only through libaime functions. The memory pointed to by string may be modified by the application.

See Byte Data C Type.

call

The call field is the reference counter.

See Referable Objects.

string

The string field is the address where the byte array proper is stored. A zero byte trails the array bytes.

length

The length field is the byte array proper size and does not include the trailing zero byte.

See x1f4_kate_lxdata.