Alex Henrie alexhenrie24@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?