12 lines
284 B
C++
12 lines
284 B
C++
#pragma once
|
|
|
|
#include "nt.hpp"
|
|
#include <ShlObj.h>
|
|
#include <atlbase.h>
|
|
|
|
namespace utils::com
|
|
{
|
|
bool select_folder(std::string& out_folder, const std::string& title = "Select a Folder", const std::string& selected_folder = {});
|
|
CComPtr<IProgressDialog> create_progress_dialog();
|
|
}
|