| 501 | |
| 502 | LoopFilesStruct() : orig_dir_length(0), long_dir(NULL) {} |
| 503 | ~LoopFilesStruct() |
| 504 | { |
| 505 | if (orig_dir_length) |
| 506 | free(orig_dir); |
| 507 | //else: orig_dir is the constant _T(""). |
| 508 | free(long_dir); |
| 509 | } |
| 510 | }; |
| 511 | |
| 512 | // Some of these lengths and such are based on the MSDN example at |
nothing calls this directly
no outgoing calls
no test coverage detected