advapi: Improve SetEntriesInAclA stub.
This commit is contained in:
parent
552c225949
commit
67e2c97a88
|
@ -27,7 +27,6 @@
|
|||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winerror.h"
|
||||
#include "rpcnterr.h"
|
||||
#include "winreg.h"
|
||||
#include "winternl.h"
|
||||
#include "winioctl.h"
|
||||
|
@ -2865,7 +2864,8 @@ DWORD WINAPI SetEntriesInAclA( ULONG count, PEXPLICIT_ACCESSA pEntries,
|
|||
PACL OldAcl, PACL* NewAcl )
|
||||
{
|
||||
FIXME("%d %p %p %p\n",count,pEntries,OldAcl,NewAcl);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
*NewAcl = NULL;
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
|
|
Loading…
Reference in New Issue