mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-05 00:00:42 +01:00
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();
|
|
}
|
|
}
|