| 1049 | } |
| 1050 | |
| 1051 | pn_data_t *pn_message_annotations(pn_message_t *msg) |
| 1052 | { |
| 1053 | if (!msg) return NULL; |
| 1054 | pni_switch_to_data(&msg->annotations_raw, &msg->annotations_deprecated); |
| 1055 | return msg->annotations_deprecated; |
| 1056 | } |
| 1057 | |
| 1058 | pn_data_t *pn_message_properties(pn_message_t *msg) |
| 1059 | { |
no test coverage detected