==============================================================================
| 530 | |
| 531 | //============================================================================== |
| 532 | Time File::getLastModificationTime() const { int64 m, a, c; getFileTimesInternal (m, a, c); return Time (m); } |
| 533 | Time File::getLastAccessTime() const { int64 m, a, c; getFileTimesInternal (m, a, c); return Time (a); } |
| 534 | Time File::getCreationTime() const { int64 m, a, c; getFileTimesInternal (m, a, c); return Time (c); } |
| 535 |
no outgoing calls