From a2e89fde1acc5b189c55e0b8b38146194e455cd0 Mon Sep 17 00:00:00 2001 From: auth12 <67507608+auth12@users.noreply.github.com> Date: Mon, 27 Jul 2020 09:46:17 -0700 Subject: Removed spdlog, using fmt wrapper instead. More process class changes, support for 32/64bit processes. Injection process improvements. Other small changes. --- client/src/hwid/hwid.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 client/src/hwid/hwid.h (limited to 'client/src/hwid') 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 -- cgit v1.2.3