--------------------------------- File::Write Write to the file
| 200 | // Write to the file |
| 201 | // |
| 202 | bool File::Write(const std::vector<uint8> &lhs) |
| 203 | { |
| 204 | if ( !FILE_BASE::WriteFile(m_Handle, lhs) ) |
| 205 | { |
| 206 | LOG("Writing File failed", Error); |
| 207 | return false; |
| 208 | } |
| 209 | return true; |
| 210 | } |
| 211 | |
| 212 | //--------------------------------- |
| 213 | // File::Close |
nothing calls this directly
no outgoing calls
no test coverage detected