blob: d4b11592e76d35c5b1e09103893ec4a244e1162b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "../ui/ui.h"
namespace hwid {
struct hwid_data_t {
std::string gpu;
uint64_t uid;
};
__forceinline bool fetch(hwid_data_t& out) {
return true;
}
};
|