reactos/dll/win32/netapi32/group.c
2018-09-10 22:05:49 +02:00

44 lines
1.3 KiB
C

/*
* Copyright 2002 Andriy Palamarchuk
*
* netapi32 access functions
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "netapi32.h"
WINE_DEFAULT_DEBUG_CHANNEL(netapi32);
/************************************************************
* NetGroupSetUsers (NETAPI32.@)
*
*/
NET_API_STATUS
WINAPI
NetGroupSetUsers(IN LPCWSTR servername,
IN LPCWSTR groupname,
IN DWORD level,
IN LPBYTE buf,
IN DWORD totalentries)
{
FIXME("(%s, %s, %d, %p, %d) stub!\n", debugstr_w(servername),
debugstr_w(groupname), level, buf, totalentries);
return ERROR_ACCESS_DENIED;
}
/* EOF */