mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
13 lines
348 B
C#
13 lines
348 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Microsoft.Iris.Render.Interop.Win32;
|
|
|
|
// Bit-for-bit mirror of Microsoft.Iris.Render.HWND (UIX.RenderApi/Microsoft/Iris/Render/HWND.cs).
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct HWND
|
|
{
|
|
public IntPtr h;
|
|
public static readonly HWND NULL = new() { h = IntPtr.Zero };
|
|
}
|