| 110 | } |
| 111 | |
| 112 | void ScriptFile_WriteInt_Generic(asIScriptGeneric *gen) |
| 113 | { |
| 114 | CScriptFile *file = (CScriptFile*)gen->GetObject(); |
| 115 | asINT64 val = *(asINT64*)gen->GetAddressOfArg(0); |
| 116 | asUINT bytes = *(asUINT*)gen->GetAddressOfArg(1); |
| 117 | *(int*)gen->GetAddressOfReturnLocation() = file->WriteInt(val, bytes); |
| 118 | } |
| 119 | |
| 120 | void ScriptFile_WriteUInt_Generic(asIScriptGeneric *gen) |
| 121 | { |
nothing calls this directly
no test coverage detected