Extensible Connection-oriented Messaging (XCM)
Loading...
Searching...
No Matches
Enumerations
xcm_attr_types.h File Reference

This file contains type definitions for the XCM attribute access API. More...

Go to the source code of this file.

Enumerations

enum  xcm_attr_type { xcm_attr_type_bool = 1 , xcm_attr_type_int64 = 2 , xcm_attr_type_str = 3 , xcm_attr_type_bin = 4 }
 

Detailed Description

This file contains type definitions for the XCM attribute access API.

Enumeration Type Documentation

◆ xcm_attr_type

Enumeration representing the different attribute value types.

Enumerator
xcm_attr_type_bool 

Boolean type (from stdbool.h). Length is sizeof(bool).

xcm_attr_type_int64 

64-bit signed integer type in host byte order. Length is 8 octets.

xcm_attr_type_str 

A variable-length NUL-terminated string. Length is the actual string length (including NUL).

xcm_attr_type_bin 

Variable-length binary data.