t8-mod/source/shared-code/utilities/com.hpp
2023-11-10 13:52:20 -08:00

12 lines
288 B
C++

#pragma once
#include "nt.hpp"
#include <ShlObj.h>
#include <atlbase.h>
namespace utilities::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();
}