GetSecurityDescriptorOwner method

int GetSecurityDescriptorOwner(
  1. Pointer<Void> pSecurityDescriptor,
  2. Pointer<Pointer<Void>> pOwner,
  3. Pointer<Int32> lpbOwnerDefaulted
)

Implementation

int GetSecurityDescriptorOwner(
  ffi.Pointer<ffi.Void> pSecurityDescriptor,
  ffi.Pointer<ffi.Pointer<ffi.Void>> pOwner,
  ffi.Pointer<ffi.Int32> lpbOwnerDefaulted,
) {
  return _GetSecurityDescriptorOwner(
    pSecurityDescriptor,
    pOwner,
    lpbOwnerDefaulted,
  );
}