process a request by a client that he is [not] typing a message
| 8377 | |
| 8378 | // process a request by a client that he is [not] typing a message |
| 8379 | void MultiDoRequestTypeIcon(uint8_t *data) { |
| 8380 | int count = 0; |
| 8381 | SKIP_HEADER(data, &count); |
| 8382 | |
| 8383 | int pnum = MultiGetByte(data, &count); |
| 8384 | bool typing = (MultiGetByte(data, &count)) ? true : false; |
| 8385 | |
| 8386 | MultiSendTypeIcon(pnum, typing); |
| 8387 | } |
| 8388 | |
| 8389 | // Client is telling the server that he is [not] typing a hud message |
| 8390 | void MultiSendRequestTypeIcon(bool typing_message) { |
no test coverage detected