[PATCH] ntoskrnl: Implement MmGetPhysicalAddress

Dmitry Timoshkov dmitry at baikal.ru
Fri Aug 6 14:20:43 CDT 2021


Alex Henrie <alexhenrie24 at 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.



More information about the wine-devel mailing list