dhcpsvc: Add DhcpRequestParams stub.
Based on a patch by Mike Ellery. Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c84e6fb3e5
commit
a2ff4f37fd
|
@ -19,6 +19,7 @@
|
|||
#include <stdarg.h>
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "dhcpcsdk.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(dhcpcsvc);
|
||||
|
@ -37,3 +38,12 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
|
|||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
DWORD WINAPI DhcpRequestParams( DWORD flags, void *reserved, WCHAR *adaptername, DHCPCAPI_CLASSID *classid,
|
||||
DHCPCAPI_PARAMS_ARRAY sendparams, DHCPCAPI_PARAMS_ARRAY recdparams,
|
||||
BYTE *buffer, DWORD *size, WCHAR *requestidstr )
|
||||
{
|
||||
FIXME("(%08x, %p, %s, %p, %u, %u, %p, %p, %s): stub\n", flags, reserved, debugstr_w(adaptername), classid,
|
||||
sendparams.nParams, recdparams.nParams, buffer, size, debugstr_w(requestidstr));
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
@ stub DhcpRenewIpAddressLeaseEx
|
||||
@ stub DhcpRequestCachedParams
|
||||
@ stub DhcpRequestOptions
|
||||
@ stub DhcpRequestParams
|
||||
@ stdcall DhcpRequestParams(long ptr wstr ptr int64 int64 ptr ptr wstr)
|
||||
@ stub DhcpSetMSFTVendorSpecificOptions
|
||||
@ stub DhcpStaticRefreshParams
|
||||
@ stub DhcpUndoRequestParams
|
||||
|
|
Loading…
Reference in New Issue