MCPcopy Create free account
hub / github.com/ZDoom/Raze / RestorePos

Function RestorePos

source/common/scripting/interface/vmnatives.cpp:1455–1455  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1453static void OpenString(DScriptScanner* self, const FString* name, FString* script) { return self->wrapped.OpenString(name->GetChars(), *script); }
1454static void SavePos(DScriptScanner* self, FScanner::SavedPos *pos) { *pos = self->wrapped.SavePos(); }
1455static void RestorePos(DScriptScanner* self, const FScanner::SavedPos* pos) { return self->wrapped.RestorePos(*pos); }
1456static void GetStringContents(DScriptScanner* self, FString* str) { *str = self->wrapped.String; }
1457static void UnGet(DScriptScanner* self) { return self->wrapped.UnGet(); }
1458static int isText(DScriptScanner* self) { return self->wrapped.isText(); }

Callers 3

CheckValueMethod · 0.85
StartBracesMethod · 0.85

Calls 1

RestorePosMethod · 0.80

Tested by

no test coverage detected