| 10969 | } |
| 10970 | |
| 10971 | VarSizeType Script::GetLoopFileTimeCreated(char *aBuf) |
| 10972 | { |
| 10973 | char str[64] = ""; // Set default. |
| 10974 | if (mLoopFile) |
| 10975 | FileTimeToYYYYMMDD(str, mLoopFile->ftCreationTime, true); |
| 10976 | if (aBuf) |
| 10977 | strcpy(aBuf, str); |
| 10978 | return (VarSizeType)strlen(str); |
| 10979 | } |
| 10980 | |
| 10981 | VarSizeType Script::GetLoopFileTimeAccessed(char *aBuf) |
| 10982 | { |
no test coverage detected