GetSecurityDescriptorLength method

int GetSecurityDescriptorLength(
  1. Pointer<Void> pSecurityDescriptor
)

Implementation

int GetSecurityDescriptorLength(
  ffi.Pointer<ffi.Void> pSecurityDescriptor,
) {
  return (_GetSecurityDescriptorLength ??= _dylib.lookupFunction<
      _c_GetSecurityDescriptorLength,
      _dart_GetSecurityDescriptorLength>('GetSecurityDescriptorLength'))(
    pSecurityDescriptor,
  );
}