ndis.sys: Add NdisAllocateMemoryWithTag stub.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2015-12-15 23:56:01 -06:00 committed by Alexandre Julliard
parent de71271347
commit 2bb17745df
4 changed files with 39 additions and 1 deletions

View File

@ -26,6 +26,7 @@
#include "winbase.h"
#include "winternl.h"
#include "ddk/wdm.h"
#include "ddk/ndis.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(ndis);
@ -36,3 +37,9 @@ NTSTATUS WINAPI DriverEntry(DRIVER_OBJECT *driver, UNICODE_STRING *path)
return STATUS_SUCCESS;
}
NDIS_STATUS WINAPI NdisAllocateMemoryWithTag(void **address, UINT length, ULONG tag)
{
FIXME("(%p, %u, %u): stub\n", address, length, tag);
return NDIS_STATUS_FAILURE;
}

View File

@ -12,7 +12,7 @@
@ stub NdisAllocateBufferPool
@ stub NdisAllocateFromBlockPool
@ stub NdisAllocateMemory
@ stub NdisAllocateMemoryWithTag
@ stdcall NdisAllocateMemoryWithTag(ptr long long)
@ stub NdisAllocatePacket
@ stub NdisAllocatePacketPool
@ stub NdisAllocatePacketPoolEx

View File

@ -276,6 +276,7 @@ HEADER_SRCS = \
ddk/hidtypes.h \
ddk/imm.h \
ddk/mountmgr.h \
ddk/ndis.h \
ddk/ntddcdvd.h \
ddk/ntddk.h \
ddk/ntddser.h \

30
include/ddk/ndis.h Normal file
View File

@ -0,0 +1,30 @@
/*
* ndis.h
*
* Copyright 2015 Austin English
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef _NDIS_
#define _NDIS_
typedef void *NDIS_HANDLE, *PNDIS_HANDLE;
typedef int NDIS_STATUS, *PNDIS_STATUS;
#define NDIS_STATUS_FAILURE ((NDIS_STATUS) STATUS_UNSUCCESSFUL)
NDIS_STATUS WINAPI NdisAllocateMemoryWithTag(void **, UINT, ULONG);
#endif /* _NDIS_ */