[Bug 39579] iNode 3.6 client needs ndis.sys.NdisAllocateMemoryWithTag

wine-bugs at winehq.org wine-bugs at winehq.org
Wed Dec 16 00:48:57 CST 2015


https://bugs.winehq.org/show_bug.cgi?id=39579

--- Comment #4 from Alistair Leslie-Hughes <leslie_alistair at 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)

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list