| 77 | } |
| 78 | |
| 79 | void ScriptFile_ReadInt_Generic(asIScriptGeneric *gen) |
| 80 | { |
| 81 | CScriptFile *file = (CScriptFile*)gen->GetObject(); |
| 82 | asUINT bytes = *(asUINT*)gen->GetAddressOfArg(0); |
| 83 | *(asINT64*)gen->GetAddressOfReturnLocation() = file->ReadInt(bytes); |
| 84 | } |
| 85 | |
| 86 | void ScriptFile_ReadUInt_Generic(asIScriptGeneric *gen) |
| 87 | { |
nothing calls this directly
no test coverage detected