mirror of
https://github.com/reactos/reactos.git
synced 2025-05-24 03:24:45 +00:00
Add NetLocalGroupEnum stub.
svn path=/trunk/; revision=27096
This commit is contained in:
parent
b0186e348f
commit
472b0cb7f3
2 changed files with 16 additions and 1 deletions
|
@ -567,6 +567,21 @@ NET_API_STATUS WINAPI NetLocalGroupAdd(LPCWSTR servername, DWORD level,
|
||||||
return NERR_Success;
|
return NERR_Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/************************************************************
|
||||||
|
* NetLocalGroupEnum (NETAPI32.@)
|
||||||
|
*/
|
||||||
|
NET_API_STATUS WINAPI NetLocalGroupEnum(LPCWSTR servername, DWORD level,
|
||||||
|
LPBYTE *bufptr, DWORD prefmaxlen, PDWORD entriesread,
|
||||||
|
PDWORD totalentries, PDWORD resumehandle)
|
||||||
|
{
|
||||||
|
FIXME("(%s %ld %p %u %p %p %p) stub!\n", debugstr_w(servername),
|
||||||
|
level, bufptr, entriesread, totalentries, resumehandle);
|
||||||
|
*entriesread = 0;
|
||||||
|
*totalentries = 0;
|
||||||
|
*resumehandle = 0;
|
||||||
|
return NERR_Success;
|
||||||
|
}
|
||||||
|
|
||||||
/************************************************************
|
/************************************************************
|
||||||
* NetLocalGroupSetMember (NETAPI32.@)
|
* NetLocalGroupSetMember (NETAPI32.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
@ stub NetLocalGroupDel
|
@ stub NetLocalGroupDel
|
||||||
@ stub NetLocalGroupDelMember
|
@ stub NetLocalGroupDelMember
|
||||||
@ stub NetLocalGroupDelMembers
|
@ stub NetLocalGroupDelMembers
|
||||||
@ stub NetLocalGroupEnum
|
@ stdcall NetLocalGroupEnum(wstr long ptr long ptr ptr ptr)
|
||||||
@ stub NetLocalGroupGetInfo
|
@ stub NetLocalGroupGetInfo
|
||||||
@ stub NetLocalGroupGetMembers
|
@ stub NetLocalGroupGetMembers
|
||||||
@ stub NetLocalGroupSetInfo
|
@ stub NetLocalGroupSetInfo
|
||||||
|
|
Loading…
Reference in a new issue