aboutsummaryrefslogtreecommitdiff
path: root/client/src/util/util.cpp
diff options
context:
space:
mode:
authorauth12 <[email protected]>2020-07-21 13:07:42 -0700
committerauth12 <[email protected]>2020-07-21 13:07:42 -0700
commitf09669dd5846d95b063712571ccb7519910a0d6e (patch)
tree902f5ad201651f2d96ccf619e90b76cfa06a7b9b /client/src/util/util.cpp
parentSyscalls. (diff)
downloadloader-f09669dd5846d95b063712571ccb7519910a0d6e.tar.xz
loader-f09669dd5846d95b063712571ccb7519910a0d6e.zip
Added game selection.
Started process wrapper. Removed asmjit.
Diffstat (limited to 'client/src/util/util.cpp')
-rw-r--r--client/src/util/util.cpp54
1 files changed, 27 insertions, 27 deletions
diff --git a/client/src/util/util.cpp b/client/src/util/util.cpp
index a23c03c..dbee015 100644
--- a/client/src/util/util.cpp
+++ b/client/src/util/util.cpp
@@ -4,49 +4,49 @@
std::unordered_map<std::string, pe::image> util::loaded_modules;
-std::string util::wide_to_multibyte(const std::wstring &str) {
- std::string ret;
- int32_t str_len;
+std::string util::wide_to_multibyte(const std::wstring& str) {
+ std::string ret;
+ int32_t str_len;
- // check if not empty str
- if (str.empty())
- return{};
+ // check if not empty str
+ if (str.empty())
+ return{};
- // count size
- str_len = WideCharToMultiByte(CP_UTF8, 0, &str[0], (int32_t) str.size(), 0, 0, 0, 0);
+ // count size
+ str_len = WideCharToMultiByte(CP_UTF8, 0, &str[0], (int32_t)str.size(), 0, 0, 0, 0);
- // setup return value
- ret = std::string(str_len, 0);
+ // setup return value
+ ret = std::string(str_len, 0);
- // final conversion
- WideCharToMultiByte(CP_UTF8, 0, &str[0], (int32_t) str.size(), &ret[0], str_len, 0, 0);
+ // final conversion
+ WideCharToMultiByte(CP_UTF8, 0, &str[0], (int32_t)str.size(), &ret[0], str_len, 0, 0);
- return ret;
+ return ret;
}
native::_PEB* util::get_peb() {
- return reinterpret_cast<native::_PEB*>(__readgsqword(0x60));
+ return reinterpret_cast<native::_PEB*>(__readgsqword(0x60));
}
bool util::init() {
- auto peb = get_peb();
- if (!peb) return false;
+ auto peb = get_peb();
+ if (!peb) return false;
- if (!peb->Ldr->InMemoryOrderModuleList.Flink) return false;
+ if (!peb->Ldr->InMemoryOrderModuleList.Flink) return false;
- auto* list = &peb->Ldr->InMemoryOrderModuleList;
+ auto* list = &peb->Ldr->InMemoryOrderModuleList;
- for (auto i = list->Flink; i != list; i = i->Flink) {
- auto entry = CONTAINING_RECORD(i, native::LDR_DATA_TABLE_ENTRY, InMemoryOrderLinks);
- if (!entry)
- continue;
+ for (auto i = list->Flink; i != list; i = i->Flink) {
+ auto entry = CONTAINING_RECORD(i, native::LDR_DATA_TABLE_ENTRY, InMemoryOrderLinks);
+ if (!entry)
+ continue;
- auto name = wide_to_multibyte(entry->BaseDllName.Buffer);
- std::transform(name.begin(), name.end(), name.begin(), ::tolower);
+ auto name = wide_to_multibyte(entry->BaseDllName.Buffer);
+ std::transform(name.begin(), name.end(), name.begin(), ::tolower);
- loaded_modules[name] = pe::image(entry->DllBase);
- }
+ loaded_modules[name] = pe::image(entry->DllBase);
+ }
- return true;
+ return true;
}