| 683 | } |
| 684 | |
| 685 | void CopyCapture(uint32_t remoteID, const rdcstr &localpath) |
| 686 | { |
| 687 | WRITE_DATA_SCOPE(); |
| 688 | SCOPED_SERIALISE_CHUNK(ePacket_CopyCapture); |
| 689 | |
| 690 | SERIALISE_ELEMENT(remoteID); |
| 691 | |
| 692 | if(ser.IsErrored()) |
| 693 | { |
| 694 | SAFE_DELETE(m_Socket); |
| 695 | return; |
| 696 | } |
| 697 | |
| 698 | m_CaptureCopies[remoteID] = localpath; |
| 699 | } |
| 700 | |
| 701 | void DeleteCapture(uint32_t remoteID) |
| 702 | { |
no test coverage detected