| 13 | |
| 14 | |
| 15 | FindFile::~FindFile() |
| 16 | { |
| 17 | #ifdef _WIN_ALL |
| 18 | if (hFind!=INVALID_HANDLE_VALUE) |
| 19 | FindClose(hFind); |
| 20 | #else |
| 21 | if (dirp!=NULL) |
| 22 | closedir(dirp); |
| 23 | #endif |
| 24 | } |
| 25 | |
| 26 | |
| 27 | void FindFile::SetMask(const wchar *Mask) |
nothing calls this directly
no outgoing calls
no test coverage detected