This commit is contained in:
2024-10-09 13:41:32 -05:00
parent 3fa16fd846
commit d20ed07066
7 changed files with 48 additions and 17 deletions

View File

@@ -34,15 +34,15 @@ protected:
protected:
struct compat_open_info {
std::size_t count = 0u;
std::string client_id = "";
std::size_t count{0U};
std::string client_id;
std::string path;
};
struct open_info {
std::size_t count = 0u;
std::string client_id = "";
PVOID directory_buffer = nullptr;
std::size_t count{0U};
std::string client_id;
PVOID directory_buffer{nullptr};
std::string path;
};