Commit f1adcb19 authored by Robert Reif's avatar Robert Reif Committed by Alexandre Julliard

netapi32: Add stub for NetLocalGroupEnum.

parent a53de9ea
...@@ -686,6 +686,22 @@ NET_API_STATUS WINAPI NetLocalGroupAdd(LPCWSTR servername, DWORD level, ...@@ -686,6 +686,22 @@ NET_API_STATUS WINAPI NetLocalGroupAdd(LPCWSTR servername, DWORD level,
} }
/************************************************************ /************************************************************
* NetLocalGroupEnum (NETAPI32.@)
*/
NET_API_STATUS WINAPI NetLocalGroupEnum(LPCWSTR servername, DWORD level,
LPBYTE* bufptr, DWORD prefmaxlen,
LPDWORD entriesread,
LPDWORD totalentries,
PDWORD_PTR resumehandle)
{
FIXME("(%s %ld %p %ld %p %p %p) stub!\n", debugstr_w(servername),
level, bufptr, prefmaxlen, entriesread, totalentries, resumehandle);
*entriesread = 0;
*totalentries = 0;
return NERR_Success;
}
/************************************************************
* NetLocalGroupSetMember (NETAPI32.@) * NetLocalGroupSetMember (NETAPI32.@)
*/ */
......
...@@ -107,7 +107,7 @@ ...@@ -107,7 +107,7 @@
@ stub NetLocalGroupDel @ stub NetLocalGroupDel
@ stub NetLocalGroupDelMember @ stub NetLocalGroupDelMember
@ stub NetLocalGroupDelMembers @ stub NetLocalGroupDelMembers
@ stub NetLocalGroupEnum @ stdcall NetLocalGroupEnum(ptr long ptr long ptr ptr ptr)
@ stub NetLocalGroupGetInfo @ stub NetLocalGroupGetInfo
@ stub NetLocalGroupGetMembers @ stub NetLocalGroupGetMembers
@ stub NetLocalGroupSetInfo @ stub NetLocalGroupSetInfo
......
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