Commit a2ff4f37 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

dhcpsvc: Add DhcpRequestParams stub.

Based on a patch by Mike Ellery. Signed-off-by: 's avatarAlistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent c84e6fb3
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment