| 10897 | } |
| 10898 | |
| 10899 | VarSizeType Script::GetLoopFileFullPath(char *aBuf) |
| 10900 | { |
| 10901 | char *str = ""; // Set default. |
| 10902 | if (mLoopFile) |
| 10903 | // The loop handler already prepended the script's directory in here for us: |
| 10904 | str = mLoopFile->cFileName; |
| 10905 | if (aBuf) |
| 10906 | strcpy(aBuf, str); |
| 10907 | return (VarSizeType)strlen(str); |
| 10908 | } |
| 10909 | |
| 10910 | VarSizeType Script::GetLoopFileLongPath(char *aBuf) |
| 10911 | { |