rpcs3/rpcs3/rpcs3qt/uuid.h
Megamouse 8043bb9087 Qt: log uuid
This creates and logs a unique identifier and saves it to a file.
The ID will be logged for statistical purposes and stay the same until recreated.
2022-06-30 21:36:11 +02:00

18 lines
294 B
C++

#pragma once
namespace gui
{
namespace utils
{
std::string get_uuid_path();
std::string make_uuid();
std::string load_uuid();
bool validate_uuid(const std::string& uuid);
bool save_uuid(const std::string& uuid);
bool create_new_uuid(std::string& uuid);
void log_uuid();
}
}