netapi: Add stub for NetGroupAddUser.

This commit is contained in:
Stefan Leichter 2015-04-21 22:06:43 +02:00 committed by Alexandre Julliard
parent bb781b4468
commit 11af7fda4f
2 changed files with 12 additions and 1 deletions

View file

@ -2685,6 +2685,17 @@ NET_API_STATUS WINAPI NetGetAnyDCName(LPCWSTR servername, LPCWSTR domainname, LP
return ERROR_NO_SUCH_DOMAIN;
}
/************************************************************
* NetGroupAddUser (NETAPI32.@)
*/
NET_API_STATUS WINAPI
NetGroupAddUser(LPCWSTR servername, LPCWSTR groupname, LPCWSTR username)
{
FIXME("(%s, %s, %s) stub!\n", debugstr_w(servername),
debugstr_w(groupname), debugstr_w(username));
return NERR_Success;
}
/************************************************************
* NetGroupEnum (NETAPI32.@)
*

View file

@ -95,7 +95,7 @@
@ stub NetGetDisplayInformationIndex
@ stdcall NetGetJoinInformation(wstr ptr ptr)
@ stub NetGroupAdd
@ stub NetGroupAddUser
@ stdcall NetGroupAddUser(wstr wstr wstr)
@ stub NetGroupDel
@ stub NetGroupDelUser
@ stdcall NetGroupEnum(wstr long ptr long ptr ptr ptr)