mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-26 15:11:01 +00:00
More 32 bit fixes
This commit is contained in:
@@ -22,7 +22,7 @@ int main()
|
||||
printf("------------\n\n");
|
||||
|
||||
const auto peb = static_cast<PPEB64>(GetCurrentProcessPeb());
|
||||
const auto api_set_map = peb->ApiSetMap;
|
||||
const auto api_set_map = reinterpret_cast<API_SET_NAMESPACE*>(peb->ApiSetMap);
|
||||
|
||||
printf("APISET: 0x%p\n", api_set_map);
|
||||
printf("Version: %d\n", api_set_map->Version);
|
||||
|
||||
Reference in New Issue
Block a user