diff options
| author | auth12 <[email protected]> | 2020-07-27 09:46:17 -0700 |
|---|---|---|
| committer | auth12 <[email protected]> | 2020-07-27 09:46:17 -0700 |
| commit | a2e89fde1acc5b189c55e0b8b38146194e455cd0 (patch) | |
| tree | 1f130027975733e0704a583aebb1a1832a22ec11 /client/src/hwid | |
| parent | Compile fix. (diff) | |
| download | loader-a2e89fde1acc5b189c55e0b8b38146194e455cd0.tar.xz loader-a2e89fde1acc5b189c55e0b8b38146194e455cd0.zip | |
Removed spdlog, using fmt wrapper instead.
More process class changes, support for 32/64bit processes.
Injection process improvements.
Other small changes.
Diffstat (limited to 'client/src/hwid')
| -rw-r--r-- | client/src/hwid/hwid.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/src/hwid/hwid.h b/client/src/hwid/hwid.h new file mode 100644 index 0000000..8fae489 --- /dev/null +++ b/client/src/hwid/hwid.h @@ -0,0 +1,10 @@ +#pragma once + + +namespace hwid { + __forceinline std::string fetch() { + nlohmann::json j; + j["uid"] = 0; + return j.dump(); + } +};
\ No newline at end of file |