Author: ekohl Date: Mon Jun 3 18:14:46 2013 New Revision: 59172
URL: http://svn.reactos.org/svn/reactos?rev=59172&view=rev Log: [USRMGR] Enable calls to NetLocalGroupDel and NetUserDel. Now we are able to add and remove groups and users.
Modified: trunk/reactos/dll/cpl/usrmgr/groups.c trunk/reactos/dll/cpl/usrmgr/users.c
Modified: trunk/reactos/dll/cpl/usrmgr/groups.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/usrmgr/groups.c?rev... ============================================================================== --- trunk/reactos/dll/cpl/usrmgr/groups.c [iso-8859-1] (original) +++ trunk/reactos/dll/cpl/usrmgr/groups.c [iso-8859-1] Mon Jun 3 18:14:46 2013 @@ -277,11 +277,7 @@ return FALSE;
/* Delete the group */ -#if 0 status = NetLocalGroupDel(NULL, szGroupName); -#else - status = NERR_Success; -#endif if (status != NERR_Success) { TCHAR szText[256];
Modified: trunk/reactos/dll/cpl/usrmgr/users.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/usrmgr/users.c?rev=... ============================================================================== --- trunk/reactos/dll/cpl/usrmgr/users.c [iso-8859-1] (original) +++ trunk/reactos/dll/cpl/usrmgr/users.c [iso-8859-1] Mon Jun 3 18:14:46 2013 @@ -347,11 +347,7 @@ return FALSE;
/* Delete the user */ -#if 0 status = NetUserDel(NULL, szUserName); -#else - status = NERR_Success; -#endif if (status != NERR_Success) { TCHAR szText[256];