mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-04 11:47:13 +00:00
8043bb9087
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.
18 lines
294 B
C++
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();
|
|
}
|
|
}
|