https://bugs.winehq.org/show_bug.cgi?id=39579
--- Comment #4 from Alistair Leslie-Hughes leslie_alistair@hotmail.com --- (In reply to Austin English from comment #3)
Created attachment 53131 [details] updated patch
From MSDN
NDIS_STATUS NdisAllocateMemoryWithTag(PVOID *VirtualAddress, UINT Length, ULONG Tag);
would be NdisAllocateMemoryWithTag(void **VirtualAddress, UINT Length, ULONG Tag)
... You have the wrong type for address. NDIS_STATUS WINAPI NdisAllocateMemoryWithTag(void *address, UINT length, ULONG tag)