6 Aug
2021
6 Aug
'21
7:20 p.m.
Alex Henrie <alexhenrie24(a)gmail.com> wrote:
+PHYSICAL_ADDRESS MmGetPhysicalAddress(void *virtual_address) +{ + PHYSICAL_ADDRESS ret; + TRACE("(%p)\n", virtual_address); + ret.QuadPart = (ULONG_PTR)virtual_address; + return ret; +} ... +@ stdcall MmGetPhysicalAddress(ptr)
Shouldn't WINAPI be added to match the spec entry? -- Dmitry.