mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
netapi: Add stub for NetGroupAddUser.
This commit is contained in:
parent
bb781b4468
commit
11af7fda4f
@ -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.@)
|
||||
*
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user