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

12 lines
288 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>
2023-11-10 16:52:20 -05:00
namespace utilities::com
2023-03-06 15:40:07 -05:00
{
bool select_folder(std::string& out_folder, const std::string& title = "Select a Folder", const std::string& selected_folder = {});
CComPtr<IProgressDialog> create_progress_dialog();
}