| 692 | } |
| 693 | |
| 694 | int MemoryDataSource::WriteLine(LPCSTR /*buffer*/) { |
| 695 | return UTE_ERROR; |
| 696 | } |
| 697 | |
| 698 | int MemoryDataSource::Read(LPSTR buffer, size_t count) { |
| 699 | size_t size = (std::min)(m_length-m_pointer, count); |
nothing calls this directly
no outgoing calls
no test coverage detected