| 84 | } |
| 85 | |
| 86 | void ScriptFile_ReadUInt_Generic(asIScriptGeneric *gen) |
| 87 | { |
| 88 | CScriptFile *file = (CScriptFile*)gen->GetObject(); |
| 89 | asUINT bytes = *(asUINT*)gen->GetAddressOfArg(0); |
| 90 | *(asQWORD*)gen->GetAddressOfReturnLocation() = file->ReadUInt(bytes); |
| 91 | } |
| 92 | |
| 93 | void ScriptFile_ReadFloat_Generic(asIScriptGeneric *gen) |
| 94 | { |
nothing calls this directly
no test coverage detected