t8-mod/source/shared-code/utils/com.hpp

12 lines
284 B
C++
Raw Normal View History

2023-03-06 15:40:07 -05:00
#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();
}