| 447 | ////////////////////////////////////// |
| 448 | |
| 449 | QueueGetDir::QueueGetDir(HWND hNotify, const char * dirPath, int notifyCode, void * notifyData) : |
| 450 | QueueOperation(QueueTypeDirectoryGet, hNotify, notifyCode, notifyData), |
| 451 | m_fileCount(0) |
| 452 | { |
| 453 | m_dirPath = SU::strdup(dirPath); |
| 454 | } |
| 455 | |
| 456 | QueueGetDir::QueueGetDir(HWND hNotify, const char * dirPath, std::vector<char*> inputParentDirs, int notifyCode, void * notifyData) : |
| 457 | QueueOperation(QueueTypeDirectoryGet, hNotify, notifyCode, notifyData), |