ImHex/include/utils.hpp

15 lines
202 B
C++
Raw Normal View History

#pragma once
#include <windows.h>
#include <shobjidl.h>
#include <locale>
#include <codecvt>
#include <optional>
#include <string>
namespace hex {
2020-11-10 20:31:04 +00:00
std::optional<std::string> openFileDialog();
}