| 695 | } |
| 696 | |
| 697 | __int64 TextFile::_Length() const |
| 698 | { |
| 699 | LARGE_INTEGER size; |
| 700 | GetFileSizeEx(mFile, &size); |
| 701 | return size.QuadPart; |
| 702 | } |
| 703 | |
| 704 | |
| 705 | // FileObject: exports TextFile interfaces to the scripts. |
nothing calls this directly
no outgoing calls
no test coverage detected