added stubs for ObLogSecurityDescriptor and ObDereferenceSecurityDescriptor

svn path=/trunk/; revision=18916
This commit is contained in:
Thomas Bluemel 2005-10-31 19:41:27 +00:00
parent 52e523d86c
commit 341406bf3c
2 changed files with 26 additions and 0 deletions

View file

@ -828,10 +828,12 @@ ObAssignSecurity@16
;ObCheckCreateObjectAccess@28
;ObCheckObjectAccess@20
ObCreateObject@36
ObDereferenceSecurityDescriptor@8
ObFindHandleForObject@20
ObGetObjectPointerCount@4
ObGetObjectSecurity@12
ObInsertObject@24
ObLogSecurityDescriptor@12
ObMakeTemporaryObject@4
ObOpenObjectByName@28
ObOpenObjectByPointer@28

View file

@ -253,4 +253,28 @@ NtSetSecurityObject(IN HANDLE Handle,
return Status;
}
/*
* @unimplemented
*/
NTSTATUS STDCALL
ObLogSecurityDescriptor(IN PSECURITY_DESCRIPTOR InputSecurityDescriptor,
OUT PSECURITY_DESCRIPTOR *OutputSecurityDescriptor,
IN ULONG RefBias)
{
DPRINT1("ObLogSecurityDescriptor is not implemented!\n");
return STATUS_NOT_IMPLEMENTED;
}
/*
* @unimplemented
*/
NTSTATUS STDCALL
ObDereferenceSecurityDescriptor(IN PSECURITY_DESCRIPTOR SecurityDescriptor,
IN ULONG Count)
{
DPRINT1("ObDereferenceSecurityDescriptor is not implemented!\n");
}
/* EOF */