| 166 | } |
| 167 | |
| 168 | void PE::close() |
| 169 | { |
| 170 | // if already closed, ignore, else close handle to file and set hFile to nullptr |
| 171 | if (hFile != nullptr) |
| 172 | { |
| 173 | CloseHandle(hFile); |
| 174 | hFile = nullptr; |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | bool PE::emitRead() |
| 179 | { |
nothing calls this directly
no outgoing calls
no test coverage detected