Implement skeleton switch for object security

This commit is contained in:
2026-07-09 20:25:15 +02:00
parent e164370cff
commit 17f23fff41

View File

@@ -53,6 +53,22 @@ OB::Security::ProcessObjectSecurityDescriptor(IN PVOID Object,
IN MMPOOL_TYPE PoolType, IN MMPOOL_TYPE PoolType,
IN PGENERIC_MAPPING GenericMapping) IN PGENERIC_MAPPING GenericMapping)
{ {
/* Switch on the operation code */
switch(OperationCode)
{
case AssignSecurityDescriptor:
break;
case DeleteSecurityDescriptor:
break;
case QuerySecurityDescriptor:
break;
case SetSecurityDescriptor:
break;
default:
KE::Crash::Panic(0x29, 0, STATUS_INVALID_PARAMETER, 0, 0);
break;
}
UNIMPLEMENTED; UNIMPLEMENTED;
/* Return success */ /* Return success */