Enable calls to NetLocalGroupDel and NetUserDel. Now we are able to add and remove groups and users.

svn path=/trunk/; revision=59172
This commit is contained in:
Eric Kohl 2013-06-03 18:14:46 +00:00
parent 1b25f67165
commit 4c073fdf30
2 changed files with 0 additions and 8 deletions

View file

@ -277,11 +277,7 @@ GroupDelete(HWND hwndDlg)
return FALSE;
/* Delete the group */
#if 0
status = NetLocalGroupDel(NULL, szGroupName);
#else
status = NERR_Success;
#endif
if (status != NERR_Success)
{
TCHAR szText[256];

View file

@ -347,11 +347,7 @@ UserDelete(HWND hwndDlg)
return FALSE;
/* Delete the user */
#if 0
status = NetUserDel(NULL, szUserName);
#else
status = NERR_Success;
#endif
if (status != NERR_Success)
{
TCHAR szText[256];