| 1000 | } |
| 1001 | |
| 1002 | NTSTATUS BTCpuNotifyMapViewOfSection(void* Unk1, void* Address, void* Unk2, SIZE_T Size, ULONG AllocType, ULONG Prot) { |
| 1003 | std::scoped_lock Lock(ThreadCreationMutex); |
| 1004 | HandleImageMap(reinterpret_cast<uint64_t>(Address)); |
| 1005 | return STATUS_SUCCESS; |
| 1006 | } |
| 1007 | |
| 1008 | void BTCpuNotifyUnmapViewOfSection(void* Address, BOOL After, ULONG Status) { |
| 1009 | if (!After) { |
nothing calls this directly
no test coverage detected