| 140 | } |
| 141 | |
| 142 | void ScriptFile_IsEOF_Generic(asIScriptGeneric *gen) |
| 143 | { |
| 144 | CScriptFile *file = (CScriptFile*)gen->GetObject(); |
| 145 | bool r = file->IsEOF(); |
| 146 | gen->SetReturnByte(r); |
| 147 | } |
| 148 | |
| 149 | void ScriptFile_GetPos_Generic(asIScriptGeneric *gen) |
| 150 | { |
nothing calls this directly
no test coverage detected