Return value of GetCurrentExplorerFolders()
| 177 | using UniquePidlPtr = std::unique_ptr< ITEMIDLIST, CoTaskMemDeleter >; |
| 178 | // Return value of GetCurrentExplorerFolders() |
| 179 | struct ExplorerFolderInfo |
| 180 | { |
| 181 | HWND hwnd = nullptr; // window handle of explorer |
| 182 | UniquePidlPtr pidl; // PIDL that points to current folder |
| 183 | }; |
| 184 | |
| 185 | // Get information about all currently open explorer windows. |
| 186 | // Throws std::system_error exception to report errors. |
nothing calls this directly
no outgoing calls
no test coverage detected