MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / _Tell

Method _Tell

source/TextIO.cpp:691–695  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

689}
690
691__int64 TextFile::_Tell() const
692{
693 LARGE_INTEGER in = {0}, out;
694 return SetFilePointerEx(mFile, in, &out, FILE_CURRENT) ? out.QuadPart : -1;
695}
696
697__int64 TextFile::_Length() const
698{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected