| 66 | |
| 67 | template <class T> |
| 68 | __forceinline auto rkm(std::uintptr_t addr) -> T |
| 69 | { |
| 70 | T buffer; |
| 71 | rkm((void*)&buffer, (void*)addr, sizeof T); |
| 72 | return buffer; |
| 73 | } |
| 74 | |
| 75 | template <class T> |
| 76 | __forceinline void* wkm(std::uintptr_t addr, const T& value) |
nothing calls this directly
no outgoing calls
no test coverage detected