netapi32: Add stub for NetLocalGroupEnum.
This commit is contained in:
parent
a53de9ea30
commit
f1adcb191f
|
@ -685,6 +685,22 @@ NET_API_STATUS WINAPI NetLocalGroupAdd(LPCWSTR servername, DWORD level,
|
|||
return NERR_Success;
|
||||
}
|
||||
|
||||
/************************************************************
|
||||
* 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.@)
|
||||
*/
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
@ stub NetLocalGroupDel
|
||||
@ stub NetLocalGroupDelMember
|
||||
@ stub NetLocalGroupDelMembers
|
||||
@ stub NetLocalGroupEnum
|
||||
@ stdcall NetLocalGroupEnum(ptr long ptr long ptr ptr ptr)
|
||||
@ stub NetLocalGroupGetInfo
|
||||
@ stub NetLocalGroupGetMembers
|
||||
@ stub NetLocalGroupSetInfo
|
||||
|
|
Loading…
Reference in New Issue