| 37 | } |
| 38 | |
| 39 | void Unload() { |
| 40 | if (data != nullptr) { |
| 41 | ::UnloadFileData(data); |
| 42 | data = nullptr; |
| 43 | bytesRead = 0; |
| 44 | } |
| 45 | } |
| 46 | private: |
| 47 | unsigned char* data{nullptr}; |
| 48 | int bytesRead{0}; |
nothing calls this directly
no outgoing calls
no test coverage detected