| 53 | } |
| 54 | |
| 55 | void File::Load(const byte* data,dword size) const |
| 56 | { |
| 57 | NST_ASSERT( data && size ); |
| 58 | |
| 59 | context.checksum.Clear(); |
| 60 | context.checksum.Compute( data, size ); |
| 61 | context.data.Destroy(); |
| 62 | } |
| 63 | |
| 64 | void File::Load(byte* data,dword size,Type type) const |
| 65 | { |
no test coverage detected