----------------------------------------------------------------------------- Add a byte to the message -----------------------------------------------------------------------------
| 130 | // Add a byte to the message |
| 131 | //----------------------------------------------------------------------------- |
| 132 | void Msg::Append |
| 133 | ( |
| 134 | uint8 const _data |
| 135 | ) |
| 136 | { |
| 137 | m_buffer[m_length++] = _data; |
| 138 | } |
| 139 | |
| 140 | //----------------------------------------------------------------------------- |
| 141 | // <Msg::AppendArray> |
no outgoing calls