| File: Windows\Win32\Graphics\Gdi\HRGN.cs | Web Access |
| Project: src\winforms\src\System.Private.Windows.Core\src\Microsoft.Private.Windows.Core.csproj (Microsoft.Private.Windows.Core) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Windows.Win32.Graphics.Gdi; internal readonly partial struct HRGN { public unsafe RECT[] GetRegionRects() { uint regionDataSize = PInvokeCore.GetRegionData(this, 0, lpRgnData: null); if (regionDataSize == 0) { return []; } using BufferScope<byte> buffer = new((int)regionDataSize); fixed (byte* b = buffer) { if (PInvokeCore.GetRegionData(this, regionDataSize, (RGNDATA*)b) != regionDataSize) { return []; } RECT[] result = RGNDATAHEADER.GetRegionRects((RGNDATAHEADER*)b); return result; } } }