diff --git a/build/MicroCom.targets b/build/MicroCom.targets
index 3a07950616..3577261738 100644
--- a/build/MicroCom.targets
+++ b/build/MicroCom.targets
@@ -15,7 +15,7 @@
Inputs="@(AvnComIdl);$(MSBuildThisFileDirectory)/../tools/MicroComGenerator/**/*.cs"
Outputs="%(AvnComIdl.OutputFile)">
-
+
@@ -24,7 +24,7 @@
-
+
<_AvaloniaPatchComInterop>true
diff --git a/samples/Sandbox/MainWindow.axaml.cs b/samples/Sandbox/MainWindow.axaml.cs
index b7222e043d..3d54036d29 100644
--- a/samples/Sandbox/MainWindow.axaml.cs
+++ b/samples/Sandbox/MainWindow.axaml.cs
@@ -1,6 +1,7 @@
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
+using Avalonia.Win32.WinRT.Composition;
namespace Sandbox
{
diff --git a/src/Avalonia.MicroCom/MicroComProxyBase.cs b/src/Avalonia.MicroCom/MicroComProxyBase.cs
index 681e278104..140af3e4ef 100644
--- a/src/Avalonia.MicroCom/MicroComProxyBase.cs
+++ b/src/Avalonia.MicroCom/MicroComProxyBase.cs
@@ -56,7 +56,7 @@ namespace Avalonia.MicroCom
{
var guid = MicroComRuntime.GetGuidFor(typeof(T));
var rv = QueryInterface(guid, out var ppv);
- if (rv != 0)
+ if (rv == 0)
return (T)MicroComRuntime.CreateProxyFor(typeof(T), ppv, true);
throw new COMException("QueryInterface failed", rv);
}
diff --git a/src/Avalonia.MicroCom/MicroComRuntime.cs b/src/Avalonia.MicroCom/MicroComRuntime.cs
index 9d2c23f40a..85507674d2 100644
--- a/src/Avalonia.MicroCom/MicroComRuntime.cs
+++ b/src/Avalonia.MicroCom/MicroComRuntime.cs
@@ -38,13 +38,20 @@ namespace Avalonia.MicroCom
public static T CreateProxyFor(IntPtr pObject, bool ownsHandle) => (T)CreateProxyFor(typeof(T), pObject, ownsHandle);
public static object CreateProxyFor(Type type, IntPtr pObject, bool ownsHandle) => _factories[type](pObject, ownsHandle);
-
+
+ public static IntPtr GetNativeIntPtr(this T obj, bool owned = false) where T : IUnknown
+ => new IntPtr(GetNativePointer(obj, owned));
public static void* GetNativePointer(T obj, bool owned = false) where T : IUnknown
{
if (obj == null)
return null;
if (obj is MicroComProxyBase proxy)
+ {
+ if(owned)
+ proxy.AddRef();
return (void*)proxy.NativePointer;
+ }
+
if (obj is IMicroComShadowContainer container)
{
container.Shadow ??= new MicroComShadow(container);
@@ -89,10 +96,27 @@ namespace Avalonia.MicroCom
}
- public static T CloneReference(T iface) where T : IUnknown
+ public static T CloneReference(this T iface) where T : IUnknown
{
+ var proxy = (MicroComProxyBase)(object)iface;
var ownedPointer = GetNativePointer(iface, true);
return CreateProxyFor(ownedPointer, true);
}
+
+ public static T QueryInterface(this IUnknown unknown) where T : IUnknown
+ {
+ var proxy = (MicroComProxyBase)unknown;
+ return proxy.QueryInterface();
+ }
+
+ public static void UnsafeAddRef(this IUnknown unknown)
+ {
+ ((MicroComProxyBase)unknown).AddRef();
+ }
+
+ public static void UnsafeRelease(this IUnknown unknown)
+ {
+ ((MicroComProxyBase)unknown).Release();
+ }
}
}
diff --git a/src/Avalonia.OpenGL/Egl/EglContext.cs b/src/Avalonia.OpenGL/Egl/EglContext.cs
index 249b4d547f..58137dfff0 100644
--- a/src/Avalonia.OpenGL/Egl/EglContext.cs
+++ b/src/Avalonia.OpenGL/Egl/EglContext.cs
@@ -93,6 +93,14 @@ namespace Avalonia.OpenGL.Egl
return MakeCurrent();
}
+ public IDisposable EnsureLocked()
+ {
+ if (IsCurrent)
+ return Disposable.Empty;
+ Monitor.Enter(_lock);
+ return Disposable.Create(() => Monitor.Exit(_lock));
+ }
+
public bool IsSharedWith(IGlContext context)
{
var c = (EglContext)context;
diff --git a/src/Windows/Avalonia.Win32/Avalonia.Win32.csproj b/src/Windows/Avalonia.Win32/Avalonia.Win32.csproj
index 5889d919df..fe5f806fbe 100644
--- a/src/Windows/Avalonia.Win32/Avalonia.Win32.csproj
+++ b/src/Windows/Avalonia.Win32/Avalonia.Win32.csproj
@@ -5,9 +5,11 @@
Avalonia.Win32
+
-
+
+
diff --git a/src/Windows/Avalonia.Win32/Composition/CompositionBlurHost.cs b/src/Windows/Avalonia.Win32/Composition/CompositionBlurHost.cs
deleted file mode 100644
index 4c090e797c..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/CompositionBlurHost.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace Avalonia.Win32
-{
- internal class CompositionBlurHost : IBlurHost
- {
- Windows.UI.Composition.Visual _blurVisual;
-
- public CompositionBlurHost(Windows.UI.Composition.Visual blurVisual)
- {
- _blurVisual = blurVisual;
- }
-
- public void SetBlur(bool enabled)
- {
- _blurVisual.IsVisible = enabled;
- }
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/CompositionConnector.cs b/src/Windows/Avalonia.Win32/Composition/CompositionConnector.cs
deleted file mode 100644
index 5bdc0cd410..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/CompositionConnector.cs
+++ /dev/null
@@ -1,175 +0,0 @@
-using System;
-using System.Runtime.InteropServices;
-using Avalonia.Logging;
-using Avalonia.OpenGL;
-using Avalonia.OpenGL.Angle;
-using Avalonia.OpenGL.Egl;
-using Windows.UI.Composition;
-using Windows.UI.Composition.Interop;
-using WinRT;
-
-namespace Avalonia.Win32
-{
- internal class CompositionConnector
- {
- private Compositor _compositor;
- private Windows.System.DispatcherQueueController _dispatcherQueueController;
- private CompositionGraphicsDevice _graphicsDevice;
-
- internal enum DISPATCHERQUEUE_THREAD_APARTMENTTYPE
- {
- DQTAT_COM_NONE = 0,
- DQTAT_COM_ASTA = 1,
- DQTAT_COM_STA = 2
- };
-
- internal enum DISPATCHERQUEUE_THREAD_TYPE
- {
- DQTYPE_THREAD_DEDICATED = 1,
- DQTYPE_THREAD_CURRENT = 2,
- };
-
- [StructLayout(LayoutKind.Sequential)]
- internal struct DispatcherQueueOptions
- {
- public int dwSize;
-
- [MarshalAs(UnmanagedType.I4)]
- public DISPATCHERQUEUE_THREAD_TYPE threadType;
-
- [MarshalAs(UnmanagedType.I4)]
- public DISPATCHERQUEUE_THREAD_APARTMENTTYPE apartmentType;
- };
-
- [DllImport("coremessaging.dll", EntryPoint = "CreateDispatcherQueueController", CharSet = CharSet.Unicode)]
- internal static extern IntPtr CreateDispatcherQueueController(DispatcherQueueOptions options, out IntPtr dispatcherQueueController);
-
- public static CompositionConnector TryCreate(EglPlatformOpenGlInterface egl)
- {
- const int majorRequired = 10;
- const int buildRequired = 16299;
-
- var majorInstalled = Win32Platform.WindowsVersion.Major;
- var buildInstalled = Win32Platform.WindowsVersion.Build;
-
- if (majorInstalled >= majorRequired &&
- buildInstalled >= buildRequired)
- {
- try
- {
- return new CompositionConnector(egl);
- }
- catch (Exception e)
- {
- Logger.TryGet(LogEventLevel.Error, "WinUIComposition")?.Log(null, "Unable to initialize WinUI compositor: {0}", e);
-
- return null;
- }
- }
-
- var osVersionNotice = $"Windows {majorRequired} Build {buildRequired} is required. Your machine has Windows {majorInstalled} Build {buildInstalled} installed.";
-
- Logger.TryGet(LogEventLevel.Warning, "WinUIComposition")?.Log(null,
- $"Unable to initialize WinUI compositor: {osVersionNotice}");
-
- return null;
- }
-
- public CompositionConnector(EglPlatformOpenGlInterface egl)
- {
- EnsureDispatcherQueue();
-
- if (_dispatcherQueueController != null)
- _compositor = new Compositor();
-
- var interop = _compositor.As();
-
- var display = egl.Display as AngleWin32EglDisplay;
-
- _graphicsDevice = interop.CreateGraphicsDevice(display.GetDirect3DDevice());
- }
-
- public ICompositionDrawingSurfaceInterop InitialiseWindowCompositionTree(IntPtr hwnd, out Windows.UI.Composition.Visual surfaceVisual, out IBlurHost blurHost)
- {
- var target = CreateDesktopWindowTarget(hwnd);
-
- var surface = _graphicsDevice.CreateDrawingSurface(new Windows.Foundation.Size(0, 0),
- Windows.Graphics.DirectX.DirectXPixelFormat.B8G8R8A8UIntNormalized,
- Windows.Graphics.DirectX.DirectXAlphaMode.Premultiplied);
-
- var surfaceInterop = surface.As();
-
- var brush = _compositor.CreateSurfaceBrush(surface);
- var visual = _compositor.CreateSpriteVisual();
-
- visual.Brush = brush;
- visual.RelativeSizeAdjustment = new System.Numerics.Vector2(1, 1);
-
- var container = _compositor.CreateContainerVisual();
-
- target.Root = container;
-
- var blur = CreateBlur();
-
- blurHost = new CompositionBlurHost(blur);
-
- container.Children.InsertAtTop(blur);
-
- container.Children.InsertAtTop(visual);
-
- visual.CompositeMode = CompositionCompositeMode.SourceOver;
-
- surfaceVisual = container;
-
- return surfaceInterop;
- }
-
- private SpriteVisual CreateBlur()
- {
- var blurEffect = new GaussianBlurEffect(new CompositionEffectSourceParameter("backdrop"));
- var blurEffectFactory = _compositor.CreateEffectFactory(blurEffect);
-
- var blurBrush = blurEffectFactory.CreateBrush();
- var backDropBrush = _compositor.CreateBackdropBrush();
-
- blurBrush.SetSourceParameter("backdrop", backDropBrush);
-
- var saturateEffect = new SaturationEffect(blurEffect);
- var satEffectFactory = _compositor.CreateEffectFactory(saturateEffect);
-
- var satBrush = satEffectFactory.CreateBrush();
- satBrush.SetSourceParameter("backdrop", backDropBrush);
-
- var visual = _compositor.CreateSpriteVisual();
- visual.IsVisible = false;
-
- visual.RelativeSizeAdjustment = new System.Numerics.Vector2(1.0f, 1.0f);
- visual.Brush = satBrush;
-
- return visual;
- }
-
- private CompositionTarget CreateDesktopWindowTarget(IntPtr window)
- {
- var interop = _compositor.As();
-
- interop.CreateDesktopWindowTarget(window, false, out var windowTarget);
- return Windows.UI.Composition.Desktop.DesktopWindowTarget.FromAbi(windowTarget);
- }
-
- private void EnsureDispatcherQueue()
- {
- if (_dispatcherQueueController == null)
- {
- DispatcherQueueOptions options = new DispatcherQueueOptions();
- options.apartmentType = DISPATCHERQUEUE_THREAD_APARTMENTTYPE.DQTAT_COM_NONE;
- options.threadType = DISPATCHERQUEUE_THREAD_TYPE.DQTYPE_THREAD_CURRENT;
- options.dwSize = Marshal.SizeOf(typeof(DispatcherQueueOptions));
-
- CreateDispatcherQueueController(options, out var queue);
- _dispatcherQueueController = Windows.System.DispatcherQueueController.FromAbi(queue);
- }
- }
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/CompositionEglGlPlatformSurface.cs b/src/Windows/Avalonia.Win32/Composition/CompositionEglGlPlatformSurface.cs
deleted file mode 100644
index 441da93787..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/CompositionEglGlPlatformSurface.cs
+++ /dev/null
@@ -1,96 +0,0 @@
-using System;
-using System.Runtime.InteropServices;
-using Avalonia.OpenGL;
-using Avalonia.OpenGL.Angle;
-using Avalonia.OpenGL.Egl;
-using Avalonia.OpenGL.Surfaces;
-using Windows.UI.Composition.Interop;
-
-namespace Avalonia.Win32
-{
- internal class CompositionEglGlPlatformSurface : EglGlPlatformSurfaceBase
- {
- private EglPlatformOpenGlInterface _egl;
- private readonly IEglWindowGlPlatformSurfaceInfo _info;
- private ICompositionDrawingSurfaceInterop _surfaceInterop;
- private Windows.UI.Composition.Visual _surface;
-
- public CompositionEglGlPlatformSurface(EglPlatformOpenGlInterface egl, IEglWindowGlPlatformSurfaceInfo info) : base()
- {
- _egl = egl;
- _info = info;
- }
-
- public IBlurHost AttachToCompositionTree(CompositionConnector connector, IntPtr hwnd)
- {
- using (_egl.PrimaryContext.MakeCurrent())
- {
- _surfaceInterop = connector.InitialiseWindowCompositionTree(hwnd, out _surface, out var blurHost);
- return blurHost;
- }
- }
-
- public override IGlPlatformSurfaceRenderTarget CreateGlRenderTarget()
- {
- return new CompositionRenderTarget(_egl, _surface, _surfaceInterop, _info);
- }
-
- class CompositionRenderTarget : EglPlatformSurfaceRenderTargetBase
- {
- private readonly EglPlatformOpenGlInterface _egl;
- private readonly IEglWindowGlPlatformSurfaceInfo _info;
- private PixelSize _currentSize;
- private readonly ICompositionDrawingSurfaceInterop _surfaceInterop;
- private static Guid s_Iid = Guid.Parse("6f15aaf2-d208-4e89-9ab4-489535d34f9c");
- private Windows.UI.Composition.Visual _compositionVisual;
-
- public CompositionRenderTarget(EglPlatformOpenGlInterface egl,
- Windows.UI.Composition.Visual compositionVisual,
- ICompositionDrawingSurfaceInterop interopSurface,
- IEglWindowGlPlatformSurfaceInfo info)
- : base(egl)
- {
- _egl = egl;
- _surfaceInterop = interopSurface;
- _info = info;
- _currentSize = info.Size;
- _compositionVisual = compositionVisual;
-
- using (_egl.PrimaryContext.MakeCurrent())
- {
- _surfaceInterop.Resize(new POINT { X = _info.Size.Width, Y = _info.Size.Height });
- }
-
- _compositionVisual.Size = new System.Numerics.Vector2(_info.Size.Width, _info.Size.Height);
- }
-
- public override IGlPlatformSurfaceRenderingSession BeginDraw()
- {
- IntPtr texture;
- EglSurface surface;
-
- using (_egl.PrimaryEglContext.EnsureCurrent())
- {
- if (_info.Size != _currentSize)
- {
- _surfaceInterop.Resize(new POINT { X = _info.Size.Width, Y = _info.Size.Height });
- _compositionVisual.Size = new System.Numerics.Vector2(_info.Size.Width, _info.Size.Height);
- _currentSize = _info.Size;
- }
-
- var offset = new POINT();
-
- _surfaceInterop.BeginDraw(
- IntPtr.Zero,
- ref s_Iid,
- out texture, ref offset);
-
- surface = (_egl.Display as AngleWin32EglDisplay).WrapDirect3D11Texture(_egl, texture, offset.X, offset.Y, _info.Size.Width, _info.Size.Height);
- }
-
- return base.BeginDraw(surface, _info, () => { _surfaceInterop.EndDraw(); Marshal.Release(texture); surface.Dispose(); }, true);
- }
- }
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/D2DEffects.cs b/src/Windows/Avalonia.Win32/Composition/D2DEffects.cs
deleted file mode 100644
index 1c761ee082..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/D2DEffects.cs
+++ /dev/null
@@ -1,91 +0,0 @@
-using System;
-
-
-namespace Avalonia.Win32
-{
- class D2DEffects
- {
- public static readonly Guid CLSID_D2D12DAffineTransform = new Guid(0x6AA97485, 0x6354, 0x4CFC, 0x90, 0x8C, 0xE4, 0xA7, 0x4F, 0x62, 0xC9, 0x6C);
-
- public static readonly Guid CLSID_D2D13DPerspectiveTransform = new Guid(0xC2844D0B, 0x3D86, 0x46E7, 0x85, 0xBA, 0x52, 0x6C, 0x92, 0x40, 0xF3, 0xFB);
-
- public static readonly Guid CLSID_D2D13DTransform = new Guid(0xE8467B04, 0xEC61, 0x4B8A, 0xB5, 0xDE, 0xD4, 0xD7, 0x3D, 0xEB, 0xEA, 0x5A);
-
- public static readonly Guid CLSID_D2D1ArithmeticComposite = new Guid(0xFC151437, 0x049A, 0x4784, 0xA2, 0x4A, 0xF1, 0xC4, 0xDA, 0xF2, 0x09, 0x87);
-
- public static readonly Guid CLSID_D2D1Atlas = new Guid(0x913E2BE4, 0xFDCF, 0x4FE2, 0xA5, 0xF0, 0x24, 0x54, 0xF1, 0x4F, 0xF4, 0x08);
-
- public static readonly Guid CLSID_D2D1BitmapSource = new Guid(0x5FB6C24D, 0xC6DD, 0x4231, 0x94, 0x4, 0x50, 0xF4, 0xD5, 0xC3, 0x25, 0x2D);
-
- public static readonly Guid CLSID_D2D1Blend = new Guid(0x81C5B77B, 0x13F8, 0x4CDD, 0xAD, 0x20, 0xC8, 0x90, 0x54, 0x7A, 0xC6, 0x5D);
-
- public static readonly Guid CLSID_D2D1Border = new Guid(0x2A2D49C0, 0x4ACF, 0x43C7, 0x8C, 0x6A, 0x7C, 0x4A, 0x27, 0x87, 0x4D, 0x27);
-
- public static readonly Guid CLSID_D2D1Brightness = new Guid(0x8CEA8D1E, 0x77B0, 0x4986, 0xB3, 0xB9, 0x2F, 0x0C, 0x0E, 0xAE, 0x78, 0x87);
-
- public static readonly Guid CLSID_D2D1ColorManagement = new Guid(0x1A28524C, 0xFDD6, 0x4AA4, 0xAE, 0x8F, 0x83, 0x7E, 0xB8, 0x26, 0x7B, 0x37);
-
- public static readonly Guid CLSID_D2D1ColorMatrix = new Guid(0x921F03D6, 0x641C, 0x47DF, 0x85, 0x2D, 0xB4, 0xBB, 0x61, 0x53, 0xAE, 0x11);
-
- public static readonly Guid CLSID_D2D1Composite = new Guid(0x48FC9F51, 0xF6AC, 0x48F1, 0x8B, 0x58, 0x3B, 0x28, 0xAC, 0x46, 0xF7, 0x6D);
-
- public static readonly Guid CLSID_D2D1ConvolveMatrix = new Guid(0x407F8C08, 0x5533, 0x4331, 0xA3, 0x41, 0x23, 0xCC, 0x38, 0x77, 0x84, 0x3E);
-
- public static readonly Guid CLSID_D2D1Crop = new Guid(0xE23F7110, 0x0E9A, 0x4324, 0xAF, 0x47, 0x6A, 0x2C, 0x0C, 0x46, 0xF3, 0x5B);
-
- public static readonly Guid CLSID_D2D1DirectionalBlur = new Guid(0x174319A6, 0x58E9, 0x49B2, 0xBB, 0x63, 0xCA, 0xF2, 0xC8, 0x11, 0xA3, 0xDB);
-
- public static readonly Guid CLSID_D2D1DiscreteTransfer = new Guid(0x90866FCD, 0x488E, 0x454B, 0xAF, 0x06, 0xE5, 0x04, 0x1B, 0x66, 0xC3, 0x6C);
-
- public static readonly Guid CLSID_D2D1DisplacementMap = new Guid(0xEDC48364, 0x417, 0x4111, 0x94, 0x50, 0x43, 0x84, 0x5F, 0xA9, 0xF8, 0x90);
-
- public static readonly Guid CLSID_D2D1DistantDiffuse = new Guid(0x3E7EFD62, 0xA32D, 0x46D4, 0xA8, 0x3C, 0x52, 0x78, 0x88, 0x9A, 0xC9, 0x54);
-
- public static readonly Guid CLSID_D2D1DistantSpecular = new Guid(0x428C1EE5, 0x77B8, 0x4450, 0x8A, 0xB5, 0x72, 0x21, 0x9C, 0x21, 0xAB, 0xDA);
-
- public static readonly Guid CLSID_D2D1DpiCompensation = new Guid(0x6C26C5C7, 0x34E0, 0x46FC, 0x9C, 0xFD, 0xE5, 0x82, 0x37, 0x6, 0xE2, 0x28);
-
- public static readonly Guid CLSID_D2D1Flood = new Guid(0x61C23C20, 0xAE69, 0x4D8E, 0x94, 0xCF, 0x50, 0x07, 0x8D, 0xF6, 0x38, 0xF2);
-
- public static readonly Guid CLSID_D2D1GammaTransfer = new Guid(0x409444C4, 0xC419, 0x41A0, 0xB0, 0xC1, 0x8C, 0xD0, 0xC0, 0xA1, 0x8E, 0x42);
-
- public static readonly Guid CLSID_D2D1GaussianBlur = new Guid(0x1FEB6D69, 0x2FE6, 0x4AC9, 0x8C, 0x58, 0x1D, 0x7F, 0x93, 0xE7, 0xA6, 0xA5);
-
- public static readonly Guid CLSID_D2D1Scale = new Guid(0x9DAF9369, 0x3846, 0x4D0E, 0xA4, 0x4E, 0xC, 0x60, 0x79, 0x34, 0xA5, 0xD7);
-
- public static readonly Guid CLSID_D2D1Histogram = new Guid(0x881DB7D0, 0xF7EE, 0x4D4D, 0xA6, 0xD2, 0x46, 0x97, 0xAC, 0xC6, 0x6E, 0xE8);
-
- public static readonly Guid CLSID_D2D1HueRotation = new Guid(0x0F4458EC, 0x4B32, 0x491B, 0x9E, 0x85, 0xBD, 0x73, 0xF4, 0x4D, 0x3E, 0xB6);
-
- public static readonly Guid CLSID_D2D1LinearTransfer = new Guid(0xAD47C8FD, 0x63EF, 0x4ACC, 0x9B, 0x51, 0x67, 0x97, 0x9C, 0x03, 0x6C, 0x06);
-
- public static readonly Guid CLSID_D2D1LuminanceToAlpha = new Guid(0x41251AB7, 0x0BEB, 0x46F8, 0x9D, 0xA7, 0x59, 0xE9, 0x3F, 0xCC, 0xE5, 0xDE);
-
- public static readonly Guid CLSID_D2D1Morphology = new Guid(0xEAE6C40D, 0x626A, 0x4C2D, 0xBF, 0xCB, 0x39, 0x10, 0x01, 0xAB, 0xE2, 0x02);
-
- public static readonly Guid CLSID_D2D1OpacityMetadata = new Guid(0x6C53006A, 0x4450, 0x4199, 0xAA, 0x5B, 0xAD, 0x16, 0x56, 0xFE, 0xCE, 0x5E);
-
- public static readonly Guid CLSID_D2D1PointDiffuse = new Guid(0xB9E303C3, 0xC08C, 0x4F91, 0x8B, 0x7B, 0x38, 0x65, 0x6B, 0xC4, 0x8C, 0x20);
-
- public static readonly Guid CLSID_D2D1PointSpecular = new Guid(0x09C3CA26, 0x3AE2, 0x4F09, 0x9E, 0xBC, 0xED, 0x38, 0x65, 0xD5, 0x3F, 0x22);
-
- public static readonly Guid CLSID_D2D1Premultiply = new Guid(0x06EAB419, 0xDEED, 0x4018, 0x80, 0xD2, 0x3E, 0x1D, 0x47, 0x1A, 0xDE, 0xB2);
-
- public static readonly Guid CLSID_D2D1Saturation = new Guid(0x5CB2D9CF, 0x327D, 0x459F, 0xA0, 0xCE, 0x40, 0xC0, 0xB2, 0x08, 0x6B, 0xF7);
-
- public static readonly Guid CLSID_D2D1Shadow = new Guid(0xC67EA361, 0x1863, 0x4E69, 0x89, 0xDB, 0x69, 0x5D, 0x3E, 0x9A, 0x5B, 0x6B);
-
- public static readonly Guid CLSID_D2D1SpotDiffuse = new Guid(0x818A1105, 0x7932, 0x44F4, 0xAA, 0x86, 0x08, 0xAE, 0x7B, 0x2F, 0x2C, 0x93);
-
- public static readonly Guid CLSID_D2D1SpotSpecular = new Guid(0xEDAE421E, 0x7654, 0x4A37, 0x9D, 0xB8, 0x71, 0xAC, 0xC1, 0xBE, 0xB3, 0xC1);
-
- public static readonly Guid CLSID_D2D1TableTransfer = new Guid(0x5BF818C3, 0x5E43, 0x48CB, 0xB6, 0x31, 0x86, 0x83, 0x96, 0xD6, 0xA1, 0xD4);
-
- public static readonly Guid CLSID_D2D1Tile = new Guid(0xB0784138, 0x3B76, 0x4BC5, 0xB1, 0x3B, 0x0F, 0xA2, 0xAD, 0x02, 0x65, 0x9F);
-
- public static readonly Guid CLSID_D2D1Turbulence = new Guid(0xCF2BB6AE, 0x889A, 0x4AD7, 0xBA, 0x29, 0xA2, 0xFD, 0x73, 0x2C, 0x9F, 0xC9);
-
- public static readonly Guid CLSID_D2D1UnPremultiply = new Guid(0xFB9AC489, 0xAD8D, 0x41ED, 0x99, 0x99, 0xBB, 0x63, 0x47, 0xD1, 0x10, 0xF7);
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/EffectBase.cs b/src/Windows/Avalonia.Win32/Composition/EffectBase.cs
deleted file mode 100644
index ca5b15971e..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/EffectBase.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-using System;
-using Windows.Graphics.Effects;
-using Windows.Graphics.Effects.Interop;
-
-
-namespace Avalonia.Win32
-{
- abstract class EffectBase : IGraphicsEffect, IGraphicsEffectSource, global::Windows.Graphics.Effects.Interop.IGraphicsEffectD2D1Interop
- {
- private IGraphicsEffectSource[] _sources;
-
- public EffectBase(params IGraphicsEffectSource[] sources)
- {
- _sources = sources;
- }
-
- private IGraphicsEffectSource _source;
-
- public virtual string Name { get; set; }
-
- public abstract Guid EffectId { get; }
-
- public abstract uint PropertyCount { get; }
-
- public uint SourceCount => (uint)_sources.Length;
-
- public IGraphicsEffectSource GetSource(uint index)
- {
- if(index < _sources.Length)
- {
- return _sources[index];
- }
-
- return null;
- }
-
- public uint GetNamedPropertyMapping(string name, out GRAPHICS_EFFECT_PROPERTY_MAPPING mapping)
- {
- throw new NotImplementedException();
- }
-
- public abstract object GetProperty(uint index);
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/GRAPHICS_EFFECT_PROPERTY_MAPPING.cs b/src/Windows/Avalonia.Win32/Composition/GRAPHICS_EFFECT_PROPERTY_MAPPING.cs
deleted file mode 100644
index f5d5fc4ad3..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/GRAPHICS_EFFECT_PROPERTY_MAPPING.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace Windows.Graphics.Effects.Interop
-{
- public enum GRAPHICS_EFFECT_PROPERTY_MAPPING
- {
- GRAPHICS_EFFECT_PROPERTY_MAPPING_UNKNOWN,
- GRAPHICS_EFFECT_PROPERTY_MAPPING_DIRECT,
- GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORX,
- GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORY,
- GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORZ,
- GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORW,
- GRAPHICS_EFFECT_PROPERTY_MAPPING_RECT_TO_VECTOR4,
- GRAPHICS_EFFECT_PROPERTY_MAPPING_RADIANS_TO_DEGREES,
- GRAPHICS_EFFECT_PROPERTY_MAPPING_COLORMATRIX_ALPHA_MODE,
- GRAPHICS_EFFECT_PROPERTY_MAPPING_COLOR_TO_VECTOR3,
- GRAPHICS_EFFECT_PROPERTY_MAPPING_COLOR_TO_VECTOR4
- };
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/GaussianBlurEffect.cs b/src/Windows/Avalonia.Win32/Composition/GaussianBlurEffect.cs
deleted file mode 100644
index 342e68eeb4..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/GaussianBlurEffect.cs
+++ /dev/null
@@ -1,57 +0,0 @@
-using System;
-using Windows.Graphics.Effects;
-
-namespace Avalonia.Win32
-{
- class GaussianBlurEffect : EffectBase
- {
- public GaussianBlurEffect(IGraphicsEffectSource source) : base(source)
- {
- }
-
- enum D2D1_GAUSSIANBLUR_OPTIMIZATION
- {
- D2D1_GAUSSIANBLUR_OPTIMIZATION_SPEED,
- D2D1_GAUSSIANBLUR_OPTIMIZATION_BALANCED,
- D2D1_GAUSSIANBLUR_OPTIMIZATION_QUALITY,
- D2D1_GAUSSIANBLUR_OPTIMIZATION_FORCE_DWORD
- };
-
- enum D2D1_BORDER_MODE
- {
- D2D1_BORDER_MODE_SOFT,
- D2D1_BORDER_MODE_HARD,
- D2D1_BORDER_MODE_FORCE_DWORD
- };
-
- enum D2D1GaussianBlurProp
- {
- D2D1_GAUSSIANBLUR_PROP_STANDARD_DEVIATION,
- D2D1_GAUSSIANBLUR_PROP_OPTIMIZATION,
- D2D1_GAUSSIANBLUR_PROP_BORDER_MODE,
- D2D1_GAUSSIANBLUR_PROP_FORCE_DWORD
- };
-
- public override Guid EffectId => D2DEffects.CLSID_D2D1GaussianBlur;
-
- public override uint PropertyCount => 3;
-
- public override object GetProperty(uint index)
- {
- switch ((D2D1GaussianBlurProp)index)
- {
- case D2D1GaussianBlurProp.D2D1_GAUSSIANBLUR_PROP_STANDARD_DEVIATION:
- return 30.0f;
-
- case D2D1GaussianBlurProp.D2D1_GAUSSIANBLUR_PROP_OPTIMIZATION:
- return (uint)D2D1_GAUSSIANBLUR_OPTIMIZATION.D2D1_GAUSSIANBLUR_OPTIMIZATION_BALANCED;
-
- case D2D1GaussianBlurProp.D2D1_GAUSSIANBLUR_PROP_BORDER_MODE:
- return (uint)D2D1_BORDER_MODE.D2D1_BORDER_MODE_HARD;
- }
-
- return null;
- }
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/IBlurHost.cs b/src/Windows/Avalonia.Win32/Composition/IBlurHost.cs
deleted file mode 100644
index 6ab470d81c..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/IBlurHost.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Avalonia.Win32
-{
- internal interface IBlurHost
- {
- void SetBlur(bool enabled);
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/ICompositionDrawingSurfaceInterop.cs b/src/Windows/Avalonia.Win32/Composition/ICompositionDrawingSurfaceInterop.cs
deleted file mode 100644
index 2eac796376..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/ICompositionDrawingSurfaceInterop.cs
+++ /dev/null
@@ -1,152 +0,0 @@
-using System;
-using System.Runtime.InteropServices;
-using WinRT;
-
-namespace Windows.UI.Composition.Interop
-{
- public struct POINT
- {
- public int X;
- public int Y;
- }
-
- public struct RECT
- {
- public int left;
- public int top;
- public int right;
- public int bottom;
-
- public int Width => right - left;
- public int Height => bottom - top;
- }
-
- [WindowsRuntimeType]
- [Guid("FD04E6E3-FE0C-4C3C-AB19-A07601A576EE")]
- public interface ICompositionDrawingSurfaceInterop
- {
- void BeginDraw(IntPtr updateRect, ref Guid iid, out IntPtr updateObject, ref POINT point);
-
- void EndDraw();
-
- void Resize(POINT sizePixels);
-
- void ResumeDraw();
-
- void Scroll(RECT scrollRect, RECT clipRect, int offsetX, int offsetY);
-
- void SuspendDraw();
- }
-}
-
-namespace ABI.Windows.UI.Composition.Interop
-{
- using global::System;
- using global::System.Runtime.InteropServices;
- using global::Windows.UI.Composition;
- using global::Windows.UI.Composition.Interop;
-
- [Guid("FD04E6E3-FE0C-4C3C-AB19-A07601A576EE")]
- internal class ICompositionDrawingSurfaceInterop : global::Windows.UI.Composition.Interop.ICompositionDrawingSurfaceInterop
-
- {
- [Guid("FD04E6E3-FE0C-4C3C-AB19-A07601A576EE")]
- public unsafe struct Vftbl
- {
- public delegate int _BeginDraw(IntPtr ThisPtr, IntPtr updateRect, ref Guid iid, out IntPtr updateObject, ref POINT updateOffset);
- public delegate int _EndDraw(IntPtr ThisPtr);
- public delegate int _Resize(IntPtr ThisPtr, POINT sizePixels);
- public delegate int _ResumeDraw(IntPtr ThisPtr);
- public delegate int _Scroll(IntPtr ThisPtr, RECT scrollRect, RECT clipRect, int offsetX, int offsetY);
- public delegate int _SuspendDraw(IntPtr ThisPtr);
-
- internal global::WinRT.Interop.IUnknownVftbl IUnknownVftbl;
- public _BeginDraw BeginDraw;
- public _EndDraw EndDraw;
- public _Resize Resize;
- public _ResumeDraw ResumeDraw;
- public _Scroll Scroll;
- public _SuspendDraw SuspendDraw;
-
- public static readonly Vftbl AbiToProjectionVftable;
- public static readonly IntPtr AbiToProjectionVftablePtr;
-
- static Vftbl()
- {
- AbiToProjectionVftable = new Vftbl
- {
- IUnknownVftbl = global::WinRT.Interop.IUnknownVftbl.AbiToProjectionVftbl,
-
- BeginDraw = Do_Abi_BeginDraw,
- EndDraw = Do_Abi_EndDraw,
- Resize = Do_Abi_Resize
-
-
- };
- AbiToProjectionVftablePtr = Marshal.AllocHGlobal(Marshal.SizeOf());
- Marshal.StructureToPtr(AbiToProjectionVftable, AbiToProjectionVftablePtr, false);
- }
-
- private static int Do_Abi_BeginDraw(IntPtr ThisPtr, IntPtr updateRect, ref Guid iid, out IntPtr updateObject, ref POINT updateOffset)
- {
- updateObject = IntPtr.Zero;
- return 0;
- }
-
- private static int Do_Abi_EndDraw(IntPtr ThisPtr)
- {
- return 0;
- }
-
- private static int Do_Abi_Resize(IntPtr ThisPtr, POINT sizePixels)
- {
- return 0;
- }
- }
- internal static ObjectReference FromAbi(IntPtr thisPtr) => ObjectReference.FromAbi(thisPtr);
-
- public static implicit operator ICompositionDrawingSurfaceInterop(IObjectReference obj) => (obj != null) ? new ICompositionDrawingSurfaceInterop(obj) : null;
- protected readonly ObjectReference _obj;
- public IObjectReference ObjRef { get => _obj; }
- public IntPtr ThisPtr => _obj.ThisPtr;
- public ObjectReference AsInterface() => _obj.As();
- public A As() => _obj.AsType();
-
- public ICompositionDrawingSurfaceInterop(IObjectReference obj) : this(obj.As()) { }
- internal ICompositionDrawingSurfaceInterop(ObjectReference obj)
- {
- _obj = obj;
- }
-
- public void BeginDraw(IntPtr updateRect, ref Guid iid, out IntPtr updateObject, ref POINT point)
- {
- Marshal.ThrowExceptionForHR(_obj.Vftbl.BeginDraw(ThisPtr, updateRect, ref iid, out updateObject, ref point));
- }
-
- public void EndDraw()
- {
- Marshal.ThrowExceptionForHR(_obj.Vftbl.EndDraw(ThisPtr));
- }
-
- public void Resize(POINT sizePixels)
- {
- Marshal.ThrowExceptionForHR(_obj.Vftbl.Resize(ThisPtr, sizePixels));
- }
-
- public void ResumeDraw()
- {
- throw new NotImplementedException();
- }
-
- public void Scroll(RECT scrollRect, RECT clipRect, int offsetX, int offsetY)
- {
- throw new NotImplementedException();
- }
-
- public void SuspendDraw()
- {
- throw new NotImplementedException();
- }
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/ICompositorDesktopInterop.cs b/src/Windows/Avalonia.Win32/Composition/ICompositorDesktopInterop.cs
deleted file mode 100644
index 1d4cd3450f..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/ICompositorDesktopInterop.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-using System.Runtime.InteropServices;
-using WinRT;
-
-namespace Windows.UI.Composition.Desktop
-{
- [WindowsRuntimeType]
- [Guid("29E691FA-4567-4DCA-B319-D0F207EB6807")]
- public interface ICompositorDesktopInterop
- {
- void CreateDesktopWindowTarget(IntPtr hwndTarget, bool isTopmost, out IntPtr test);
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/ICompositorDesktopInterop1.cs b/src/Windows/Avalonia.Win32/Composition/ICompositorDesktopInterop1.cs
deleted file mode 100644
index 1c3f06d679..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/ICompositorDesktopInterop1.cs
+++ /dev/null
@@ -1,69 +0,0 @@
-using WinRT;
-
-namespace ABI.Windows.UI.Composition.Desktop
-{
- using global::System;
- using global::System.Runtime.InteropServices;
-
- [Guid("29E691FA-4567-4DCA-B319-D0F207EB6807")]
- internal class ICompositorDesktopInterop : global::Windows.UI.Composition.Desktop.ICompositorDesktopInterop
-
- {
- [Guid("29E691FA-4567-4DCA-B319-D0F207EB6807")]
- public struct Vftbl
- {
- public delegate int _CreateDesktopWindowTarget(IntPtr thisPtr, IntPtr hwndTarget, byte isTopMost, out IntPtr desktopWindowTarget);
-
- internal global::WinRT.Interop.IUnknownVftbl IUnknownVftbl;
- public _CreateDesktopWindowTarget CreateDesktopWindowTarget;
-
-
- public static readonly Vftbl AbiToProjectionVftable;
- public static readonly IntPtr AbiToProjectionVftablePtr;
-
- static Vftbl()
- {
- AbiToProjectionVftable = new Vftbl
- {
- IUnknownVftbl = global::WinRT.Interop.IUnknownVftbl.AbiToProjectionVftbl,
- CreateDesktopWindowTarget = Do_Abi_Create_Desktop_Window_Target
- };
- AbiToProjectionVftablePtr = Marshal.AllocHGlobal(Marshal.SizeOf());
- Marshal.StructureToPtr(AbiToProjectionVftable, AbiToProjectionVftablePtr, false);
- }
-
- private static int Do_Abi_Create_Desktop_Window_Target(IntPtr thisPtr, IntPtr hwndTarget, byte isTopMost, out IntPtr desktopWindowTarget)
- {
- try
- {
- ComWrappersSupport.FindObject(thisPtr).CreateDesktopWindowTarget(hwndTarget, isTopMost != 0, out desktopWindowTarget);
- return 0;
- }
- catch (Exception ex)
- {
- desktopWindowTarget = IntPtr.Zero;
- return Marshal.GetHRForException(ex);
- }
- }
- }
- internal static ObjectReference FromAbi(IntPtr thisPtr) => ObjectReference.FromAbi(thisPtr);
-
- public static implicit operator ICompositorDesktopInterop(IObjectReference obj) => (obj != null) ? new ICompositorDesktopInterop(obj) : null;
- protected readonly ObjectReference _obj;
- public IObjectReference ObjRef { get => _obj; }
- public IntPtr ThisPtr => _obj.ThisPtr;
- public ObjectReference AsInterface() => _obj.As();
- public A As() => _obj.AsType();
- public ICompositorDesktopInterop(IObjectReference obj) : this(obj.As()) { }
- internal ICompositorDesktopInterop(ObjectReference obj)
- {
- _obj = obj;
- }
-
- public void CreateDesktopWindowTarget(IntPtr hwndTarget, bool isTopmost, out IntPtr test)
- {
- Marshal.ThrowExceptionForHR(_obj.Vftbl.CreateDesktopWindowTarget(ThisPtr, hwndTarget, isTopmost ? (byte)1 : (byte)0, out test));
- }
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/ICompositorInterop.cs b/src/Windows/Avalonia.Win32/Composition/ICompositorInterop.cs
deleted file mode 100644
index d9b25e497e..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/ICompositorInterop.cs
+++ /dev/null
@@ -1,139 +0,0 @@
-using System;
-using System.Runtime.InteropServices;
-using WinRT;
-
-namespace Windows.UI.Composition.Interop
-{
- [WindowsRuntimeType]
- [Guid("25297D5C-3AD4-4C9C-B5CF-E36A38512330")]
- public interface ICompositorInterop
- {
- ICompositionSurface CreateCompositionSurfaceForHandle(IntPtr swapChain);
-
- ICompositionSurface CreateCompositionSurfaceForSwapChain(IntPtr swapChain);
-
- CompositionGraphicsDevice CreateGraphicsDevice(IntPtr renderingDevice);
- }
-}
-
-namespace ABI.Windows.UI.Composition.Interop
-{
- using global::System;
- using global::System.Runtime.InteropServices;
- using global::Windows.UI.Composition;
-
- [Guid("25297D5C-3AD4-4C9C-B5CF-E36A38512330")]
- internal class ICompositorInterop : global::Windows.UI.Composition.Interop.ICompositorInterop
-
- {
- [Guid("25297D5C-3AD4-4C9C-B5CF-E36A38512330")]
- public struct Vftbl
- {
- public delegate int _CreateCompositionSurfaceForHandle(IntPtr ThisPtr, IntPtr swapChain, out IntPtr result);
- public delegate int _CreateCompositionSurfaceForSwapChain(IntPtr ThisPtr, IntPtr swapChain, out IntPtr result);
- public delegate int _CreateGraphicsDevice(IntPtr ThisPtr, IntPtr renderingDevice, out IntPtr result);
-
- internal global::WinRT.Interop.IUnknownVftbl IUnknownVftbl;
- public _CreateCompositionSurfaceForHandle CreateCompositionSurfaceForHandle;
- public _CreateCompositionSurfaceForSwapChain CreateCompositionSurfaceForSwapChain;
- public _CreateGraphicsDevice CreateGraphicsDevice;
-
-
- public static readonly Vftbl AbiToProjectionVftable;
- public static readonly IntPtr AbiToProjectionVftablePtr;
-
- static Vftbl()
- {
- AbiToProjectionVftable = new Vftbl
- {
- IUnknownVftbl = global::WinRT.Interop.IUnknownVftbl.AbiToProjectionVftbl,
-
- CreateCompositionSurfaceForHandle = Do_Abi_Create_Composition_Surface_For_Handle,
- CreateCompositionSurfaceForSwapChain = Do_Abi_Create_Composition_Surface_For_SwapChain,
- CreateGraphicsDevice= Do_Abi_Create_Graphics_Device
- };
- AbiToProjectionVftablePtr = Marshal.AllocHGlobal(Marshal.SizeOf());
- Marshal.StructureToPtr(AbiToProjectionVftable, AbiToProjectionVftablePtr, false);
- }
-
- private static int Do_Abi_Create_Composition_Surface_For_Handle(IntPtr thisPtr, IntPtr swapChain, out IntPtr surface)
- {
- try
- {
- surface = IntPtr.Zero;
- //surface = ComWrappersSupport.FindObject(thisPtr).CreateCompositionSurfaceForHandle(swapChain);
- return 0;
- }
- catch (Exception ex)
- {
- surface = IntPtr.Zero;
- return Marshal.GetHRForException(ex);
- }
- }
-
- private static int Do_Abi_Create_Composition_Surface_For_SwapChain(IntPtr thisPtr, IntPtr swapChain, out IntPtr surface)
- {
- try
- {
- surface = IntPtr.Zero;
- //surface = ComWrappersSupport.FindObject(thisPtr).CreateCompositionSurfaceForSwapChain(swapChain);
- return 0;
- }
- catch (Exception ex)
- {
- surface = IntPtr.Zero;
- return Marshal.GetHRForException(ex);
- }
- }
-
- private static int Do_Abi_Create_Graphics_Device(IntPtr thisPtr, IntPtr renderingDevice, out IntPtr graphicsDevice)
- {
- try
- {
- graphicsDevice = ComWrappersSupport.FindObject(thisPtr).CreateGraphicsDevice(renderingDevice).ThisPtr;
- return 0;
- }
- catch (Exception ex)
- {
- graphicsDevice = IntPtr.Zero;
- return Marshal.GetHRForException(ex);
- }
- }
- }
- internal static ObjectReference FromAbi(IntPtr thisPtr) => ObjectReference.FromAbi(thisPtr);
-
- public static implicit operator ICompositorInterop(IObjectReference obj) => (obj != null) ? new ICompositorInterop(obj) : null;
- protected readonly ObjectReference _obj;
- public IObjectReference ObjRef { get => _obj; }
- public IntPtr ThisPtr => _obj.ThisPtr;
- public ObjectReference AsInterface() => _obj.As();
- public A As() => _obj.AsType();
- public ICompositorInterop(IObjectReference obj) : this(obj.As()) { }
- internal ICompositorInterop(ObjectReference obj)
- {
- _obj = obj;
- }
-
- public ICompositionSurface CreateCompositionSurfaceForHandle(IntPtr swapChain)
- {
- Marshal.ThrowExceptionForHR(_obj.Vftbl.CreateCompositionSurfaceForHandle(ThisPtr, swapChain, out var compositionSurface));
-
- return null;
- }
-
- public ICompositionSurface CreateCompositionSurfaceForSwapChain(IntPtr swapChain)
- {
- Marshal.ThrowExceptionForHR(_obj.Vftbl.CreateCompositionSurfaceForSwapChain(ThisPtr, swapChain, out var compositionSurface));
-
- return null;
- }
-
- public CompositionGraphicsDevice CreateGraphicsDevice(IntPtr renderingDevice)
- {
- Marshal.ThrowExceptionForHR(_obj.Vftbl.CreateGraphicsDevice(ThisPtr, renderingDevice, out var graphicsDevice));
-
- return CompositionGraphicsDevice.FromAbi(graphicsDevice);
- }
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/IGraphicsEffectD2D1Interop.cs b/src/Windows/Avalonia.Win32/Composition/IGraphicsEffectD2D1Interop.cs
deleted file mode 100644
index 74d3939a98..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/IGraphicsEffectD2D1Interop.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using System;
-using System.Runtime.InteropServices;
-using WinRT;
-
-namespace Windows.Graphics.Effects.Interop
-{
- [WindowsRuntimeType]
- [Guid("2FC57384-A068-44D7-A331-30982FCF7177")]
- public interface IGraphicsEffectD2D1Interop
- {
- Guid EffectId { get; }
-
- uint GetNamedPropertyMapping(string name, out GRAPHICS_EFFECT_PROPERTY_MAPPING mapping);
-
- object GetProperty(uint index);
-
- uint PropertyCount { get; }
-
- IGraphicsEffectSource GetSource(uint index);
-
- uint SourceCount { get; }
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/IGraphicsEffectD2D1Interop1.cs b/src/Windows/Avalonia.Win32/Composition/IGraphicsEffectD2D1Interop1.cs
deleted file mode 100644
index 8466b05fb5..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/IGraphicsEffectD2D1Interop1.cs
+++ /dev/null
@@ -1,217 +0,0 @@
-using WinRT;
-
-namespace ABI.Windows.Graphics.Effects.Interop
-{
- using global::System;
- using global::System.Runtime.InteropServices;
-
- [Guid("2FC57384-A068-44D7-A331-30982FCF7177")]
- internal class IGraphicsEffectD2D1Interop : global::Windows.Graphics.Effects.Interop.IGraphicsEffectD2D1Interop
-
- {
- [Guid("2FC57384-A068-44D7-A331-30982FCF7177")]
- public struct Vftbl
- {
- public delegate int _GetEffectId(IntPtr thisPtr, out Guid guid);
- public delegate int _GetNamedPropertyMapping(IntPtr thisPtr, IntPtr name, IntPtr index, IntPtr mapping);
- public delegate int _GetProperty(IntPtr thisPtr, uint index, out IntPtr value);
- public unsafe delegate int _GetPropertyCount(IntPtr thisPtr, uint* count);
- public delegate int _GetSource(IntPtr thisPtr, uint index, out IntPtr source);
- public delegate int _GetSourceCount(IntPtr thisPtr, out uint count);
-
- internal global::WinRT.Interop.IUnknownVftbl IUnknownVftbl;
- public _GetEffectId GetEffectId;
- public _GetNamedPropertyMapping GetNamedPropertyMapping;
- public _GetPropertyCount GetPropertyCount;
- public _GetProperty GetProperty;
- public _GetSource GetSource;
- public _GetSourceCount GetSourceCount;
-
- public static readonly Vftbl AbiToProjectionVftable;
- public static readonly IntPtr AbiToProjectionVftablePtr;
-
- unsafe static Vftbl()
- {
- AbiToProjectionVftable = new Vftbl
- {
- IUnknownVftbl = global::WinRT.Interop.IUnknownVftbl.AbiToProjectionVftbl,
- GetEffectId = Do_Abi_Get_Effect_Id,
- GetNamedPropertyMapping = Do_Abi_Get_Property_Mapping,
- GetPropertyCount = Do_Abi_Get_Property_Count,
- GetProperty = Do_Abi_Get_Property,
- GetSource = Do_Abi_Get_Source,
- GetSourceCount = Do_Abi_Get_Source_Count
-
- };
- AbiToProjectionVftablePtr = Marshal.AllocHGlobal(Marshal.SizeOf());
- Marshal.StructureToPtr(AbiToProjectionVftable, AbiToProjectionVftablePtr, false);
- }
-
- private static int Do_Abi_Get_Effect_Id(IntPtr thisPtr, out Guid guid)
- {
- guid = default;
-
- try
- {
- guid = ComWrappersSupport.FindObject(thisPtr).EffectId;
- }
- catch (Exception ex)
- {
- return Marshal.GetHRForException(ex);
- }
-
- return 0;
- }
-
- private static int Do_Abi_Get_Property_Mapping(IntPtr thisPtr, IntPtr name, IntPtr index, IntPtr mapping)
- {
- try
- {
- ComWrappersSupport.FindObject(thisPtr).GetNamedPropertyMapping(MarshalString.FromAbi(name), out var mappingResult);
- }
- catch (Exception ex)
- {
- return Marshal.GetHRForException(ex);
- }
-
- return 0;
- }
-
- private static int Do_Abi_Get_Property(IntPtr thisPtr, uint index, out IntPtr value)
- {
- value = default;
-
- try
- {
- value = MarshalInspectable.CreateMarshaler(
- ComWrappersSupport.FindObject(thisPtr).GetProperty(index))
- .As(Guid.Parse("4BD682DD-7554-40E9-9A9B-82654EDE7E62"))
- .GetRef();
-
- }
- catch (Exception ex)
- {
- return Marshal.GetHRForException(ex);
- }
-
- return 0;
- }
-
- unsafe private static int Do_Abi_Get_Property_Count(IntPtr thisPtr, uint* count)
- {
-
- try
- {
- var res = ComWrappersSupport.FindObject(thisPtr).PropertyCount;
-
- if (count != null)
- {
- *count = res;
- }
- }
- catch (Exception ex)
- {
- return Marshal.GetHRForException(ex);
- }
-
- return 0;
- }
-
- private static int Do_Abi_Get_Source(IntPtr thisPtr, uint index, out IntPtr value)
- {
- value = default;
-
- try
- {
- var source = ComWrappersSupport.FindObject(thisPtr).GetSource(index);
-
- value = MarshalInterface.FromManaged(source);
- }
- catch (Exception ex)
- {
- return Marshal.GetHRForException(ex);
- }
-
- return 0;
- }
-
- private static int Do_Abi_Get_Source_Count(IntPtr thisPtr, out uint count)
- {
- count = default;
-
- try
- {
- count = ComWrappersSupport.FindObject(thisPtr).SourceCount;
- }
- catch (Exception ex)
- {
- return Marshal.GetHRForException(ex);
- }
-
- return 0;
- }
- }
- internal static ObjectReference FromAbi(IntPtr thisPtr) => ObjectReference.FromAbi(thisPtr);
-
- public static implicit operator IGraphicsEffectD2D1Interop(IObjectReference obj) => (obj != null) ? new IGraphicsEffectD2D1Interop(obj) : null;
- protected readonly ObjectReference _obj;
- public IObjectReference ObjRef { get => _obj; }
- public IntPtr ThisPtr => _obj.ThisPtr;
-
- public ObjectReference AsInterface() => _obj.As();
- public A As() => _obj.AsType();
- public IGraphicsEffectD2D1Interop(IObjectReference obj) : this(obj.As()) { }
- internal IGraphicsEffectD2D1Interop(ObjectReference obj)
- {
- _obj = obj;
- }
-
- public Guid EffectId
- {
- get
- {
- Marshal.ThrowExceptionForHR(_obj.Vftbl.GetEffectId(ThisPtr, out Guid guid));
- return guid;
- }
- }
-
- public uint PropertyCount
- {
- get
- {
- unsafe
- {
- uint count = default;
- Marshal.ThrowExceptionForHR(_obj.Vftbl.GetPropertyCount(ThisPtr, &count));
- return count;
- }
- }
- }
-
- public uint SourceCount
- {
- get
- {
- Marshal.ThrowExceptionForHR(_obj.Vftbl.GetSourceCount(ThisPtr, out uint count));
- return count;
- }
- }
-
- public uint GetNamedPropertyMapping(string name, out global::Windows.Graphics.Effects.Interop.GRAPHICS_EFFECT_PROPERTY_MAPPING mapping)
- {
- throw new NotImplementedException();
- }
-
- public object GetProperty(uint index)
- {
- // Marshal.ThrowExceptionForHR(_obj.Vftbl.GetProperty(ThisPtr, index, out IntPtr value));
- throw new NotImplementedException();
- }
-
- public global::Windows.Graphics.Effects.IGraphicsEffectSource GetSource(uint index)
- {
- throw new NotImplementedException();
- }
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Composition/SaturationEffect.cs b/src/Windows/Avalonia.Win32/Composition/SaturationEffect.cs
deleted file mode 100644
index 90eca22d8e..0000000000
--- a/src/Windows/Avalonia.Win32/Composition/SaturationEffect.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System;
-using Windows.Graphics.Effects;
-
-
-namespace Avalonia.Win32
-{
- class SaturationEffect : EffectBase
- {
- public SaturationEffect(IGraphicsEffect source) : base(source)
- {
- }
-
- enum D2D1_SATURATION_PROP
- {
- D2D1_SATURATION_PROP_SATURATION,
- D2D1_SATURATION_PROP_FORCE_DWORD
- };
-
- public override Guid EffectId => D2DEffects.CLSID_D2D1Saturation;
-
- public override uint PropertyCount => 1;
-
- public override object GetProperty(uint index)
- {
- switch ((D2D1_SATURATION_PROP)index)
- {
- case D2D1_SATURATION_PROP.D2D1_SATURATION_PROP_SATURATION:
- return 2.0f;
- }
-
- return null;
- }
- }
-}
-
diff --git a/src/Windows/Avalonia.Win32/Interop/UnmanagedMethods.cs b/src/Windows/Avalonia.Win32/Interop/UnmanagedMethods.cs
index f88c57cf59..af1692302a 100644
--- a/src/Windows/Avalonia.Win32/Interop/UnmanagedMethods.cs
+++ b/src/Windows/Avalonia.Win32/Interop/UnmanagedMethods.cs
@@ -1225,6 +1225,9 @@ namespace Avalonia.Win32.Interop
[DllImport("kernel32.dll", SetLastError = true)]
public static extern IntPtr LoadLibrary(string fileName);
+
+ [DllImport("kernel32.dll", SetLastError = true)]
+ public static extern IntPtr LoadLibraryEx(string fileName, IntPtr hFile, int flags);
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Ansi)]
public static extern IntPtr GetProcAddress(IntPtr hModule, string lpProcName);
@@ -1613,6 +1616,12 @@ namespace Avalonia.Win32.Interop
public int X;
public int Y;
}
+
+ public struct SIZE
+ {
+ public int X;
+ public int Y;
+ }
public struct RECT
{
diff --git a/src/Windows/Avalonia.Win32/Win32GlManager.cs b/src/Windows/Avalonia.Win32/Win32GlManager.cs
index 4363b5fd29..e79d9bbde7 100644
--- a/src/Windows/Avalonia.Win32/Win32GlManager.cs
+++ b/src/Windows/Avalonia.Win32/Win32GlManager.cs
@@ -3,6 +3,7 @@ using Avalonia.OpenGL;
using Avalonia.OpenGL.Angle;
using Avalonia.OpenGL.Egl;
using Avalonia.Win32.OpenGl;
+using Avalonia.Win32.WinRT.Composition;
namespace Avalonia.Win32
{
@@ -26,7 +27,7 @@ namespace Avalonia.Win32
if (egl is { } &&
opts?.UseWindowsUIComposition == true)
{
- var compositionConnector = CompositionConnector.TryCreate(egl);
+ var compositionConnector = WinUICompositorConnection.TryCreate(egl);
if (compositionConnector != null)
AvaloniaLocator.CurrentMutable.BindToSelf(compositionConnector);
diff --git a/src/Windows/Avalonia.Win32/WinRT/Composition/D2DEffects.cs b/src/Windows/Avalonia.Win32/WinRT/Composition/D2DEffects.cs
new file mode 100644
index 0000000000..bef5a55b06
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/Composition/D2DEffects.cs
@@ -0,0 +1,130 @@
+using System;
+
+namespace Avalonia.Win32.WinRT.Composition
+{
+ class D2DEffects
+ {
+ public static readonly Guid CLSID_D2D12DAffineTransform =
+ new Guid(0x6AA97485, 0x6354, 0x4CFC, 0x90, 0x8C, 0xE4, 0xA7, 0x4F, 0x62, 0xC9, 0x6C);
+
+ public static readonly Guid CLSID_D2D13DPerspectiveTransform =
+ new Guid(0xC2844D0B, 0x3D86, 0x46E7, 0x85, 0xBA, 0x52, 0x6C, 0x92, 0x40, 0xF3, 0xFB);
+
+ public static readonly Guid CLSID_D2D13DTransform =
+ new Guid(0xE8467B04, 0xEC61, 0x4B8A, 0xB5, 0xDE, 0xD4, 0xD7, 0x3D, 0xEB, 0xEA, 0x5A);
+
+ public static readonly Guid CLSID_D2D1ArithmeticComposite =
+ new Guid(0xFC151437, 0x049A, 0x4784, 0xA2, 0x4A, 0xF1, 0xC4, 0xDA, 0xF2, 0x09, 0x87);
+
+ public static readonly Guid CLSID_D2D1Atlas =
+ new Guid(0x913E2BE4, 0xFDCF, 0x4FE2, 0xA5, 0xF0, 0x24, 0x54, 0xF1, 0x4F, 0xF4, 0x08);
+
+ public static readonly Guid CLSID_D2D1BitmapSource =
+ new Guid(0x5FB6C24D, 0xC6DD, 0x4231, 0x94, 0x4, 0x50, 0xF4, 0xD5, 0xC3, 0x25, 0x2D);
+
+ public static readonly Guid CLSID_D2D1Blend =
+ new Guid(0x81C5B77B, 0x13F8, 0x4CDD, 0xAD, 0x20, 0xC8, 0x90, 0x54, 0x7A, 0xC6, 0x5D);
+
+ public static readonly Guid CLSID_D2D1Border =
+ new Guid(0x2A2D49C0, 0x4ACF, 0x43C7, 0x8C, 0x6A, 0x7C, 0x4A, 0x27, 0x87, 0x4D, 0x27);
+
+ public static readonly Guid CLSID_D2D1Brightness =
+ new Guid(0x8CEA8D1E, 0x77B0, 0x4986, 0xB3, 0xB9, 0x2F, 0x0C, 0x0E, 0xAE, 0x78, 0x87);
+
+ public static readonly Guid CLSID_D2D1ColorManagement =
+ new Guid(0x1A28524C, 0xFDD6, 0x4AA4, 0xAE, 0x8F, 0x83, 0x7E, 0xB8, 0x26, 0x7B, 0x37);
+
+ public static readonly Guid CLSID_D2D1ColorMatrix =
+ new Guid(0x921F03D6, 0x641C, 0x47DF, 0x85, 0x2D, 0xB4, 0xBB, 0x61, 0x53, 0xAE, 0x11);
+
+ public static readonly Guid CLSID_D2D1Composite =
+ new Guid(0x48FC9F51, 0xF6AC, 0x48F1, 0x8B, 0x58, 0x3B, 0x28, 0xAC, 0x46, 0xF7, 0x6D);
+
+ public static readonly Guid CLSID_D2D1ConvolveMatrix =
+ new Guid(0x407F8C08, 0x5533, 0x4331, 0xA3, 0x41, 0x23, 0xCC, 0x38, 0x77, 0x84, 0x3E);
+
+ public static readonly Guid CLSID_D2D1Crop =
+ new Guid(0xE23F7110, 0x0E9A, 0x4324, 0xAF, 0x47, 0x6A, 0x2C, 0x0C, 0x46, 0xF3, 0x5B);
+
+ public static readonly Guid CLSID_D2D1DirectionalBlur =
+ new Guid(0x174319A6, 0x58E9, 0x49B2, 0xBB, 0x63, 0xCA, 0xF2, 0xC8, 0x11, 0xA3, 0xDB);
+
+ public static readonly Guid CLSID_D2D1DiscreteTransfer =
+ new Guid(0x90866FCD, 0x488E, 0x454B, 0xAF, 0x06, 0xE5, 0x04, 0x1B, 0x66, 0xC3, 0x6C);
+
+ public static readonly Guid CLSID_D2D1DisplacementMap =
+ new Guid(0xEDC48364, 0x417, 0x4111, 0x94, 0x50, 0x43, 0x84, 0x5F, 0xA9, 0xF8, 0x90);
+
+ public static readonly Guid CLSID_D2D1DistantDiffuse =
+ new Guid(0x3E7EFD62, 0xA32D, 0x46D4, 0xA8, 0x3C, 0x52, 0x78, 0x88, 0x9A, 0xC9, 0x54);
+
+ public static readonly Guid CLSID_D2D1DistantSpecular =
+ new Guid(0x428C1EE5, 0x77B8, 0x4450, 0x8A, 0xB5, 0x72, 0x21, 0x9C, 0x21, 0xAB, 0xDA);
+
+ public static readonly Guid CLSID_D2D1DpiCompensation =
+ new Guid(0x6C26C5C7, 0x34E0, 0x46FC, 0x9C, 0xFD, 0xE5, 0x82, 0x37, 0x6, 0xE2, 0x28);
+
+ public static readonly Guid CLSID_D2D1Flood =
+ new Guid(0x61C23C20, 0xAE69, 0x4D8E, 0x94, 0xCF, 0x50, 0x07, 0x8D, 0xF6, 0x38, 0xF2);
+
+ public static readonly Guid CLSID_D2D1GammaTransfer =
+ new Guid(0x409444C4, 0xC419, 0x41A0, 0xB0, 0xC1, 0x8C, 0xD0, 0xC0, 0xA1, 0x8E, 0x42);
+
+ public static readonly Guid CLSID_D2D1GaussianBlur =
+ new Guid(0x1FEB6D69, 0x2FE6, 0x4AC9, 0x8C, 0x58, 0x1D, 0x7F, 0x93, 0xE7, 0xA6, 0xA5);
+
+ public static readonly Guid CLSID_D2D1Scale =
+ new Guid(0x9DAF9369, 0x3846, 0x4D0E, 0xA4, 0x4E, 0xC, 0x60, 0x79, 0x34, 0xA5, 0xD7);
+
+ public static readonly Guid CLSID_D2D1Histogram =
+ new Guid(0x881DB7D0, 0xF7EE, 0x4D4D, 0xA6, 0xD2, 0x46, 0x97, 0xAC, 0xC6, 0x6E, 0xE8);
+
+ public static readonly Guid CLSID_D2D1HueRotation =
+ new Guid(0x0F4458EC, 0x4B32, 0x491B, 0x9E, 0x85, 0xBD, 0x73, 0xF4, 0x4D, 0x3E, 0xB6);
+
+ public static readonly Guid CLSID_D2D1LinearTransfer =
+ new Guid(0xAD47C8FD, 0x63EF, 0x4ACC, 0x9B, 0x51, 0x67, 0x97, 0x9C, 0x03, 0x6C, 0x06);
+
+ public static readonly Guid CLSID_D2D1LuminanceToAlpha =
+ new Guid(0x41251AB7, 0x0BEB, 0x46F8, 0x9D, 0xA7, 0x59, 0xE9, 0x3F, 0xCC, 0xE5, 0xDE);
+
+ public static readonly Guid CLSID_D2D1Morphology =
+ new Guid(0xEAE6C40D, 0x626A, 0x4C2D, 0xBF, 0xCB, 0x39, 0x10, 0x01, 0xAB, 0xE2, 0x02);
+
+ public static readonly Guid CLSID_D2D1OpacityMetadata =
+ new Guid(0x6C53006A, 0x4450, 0x4199, 0xAA, 0x5B, 0xAD, 0x16, 0x56, 0xFE, 0xCE, 0x5E);
+
+ public static readonly Guid CLSID_D2D1PointDiffuse =
+ new Guid(0xB9E303C3, 0xC08C, 0x4F91, 0x8B, 0x7B, 0x38, 0x65, 0x6B, 0xC4, 0x8C, 0x20);
+
+ public static readonly Guid CLSID_D2D1PointSpecular =
+ new Guid(0x09C3CA26, 0x3AE2, 0x4F09, 0x9E, 0xBC, 0xED, 0x38, 0x65, 0xD5, 0x3F, 0x22);
+
+ public static readonly Guid CLSID_D2D1Premultiply =
+ new Guid(0x06EAB419, 0xDEED, 0x4018, 0x80, 0xD2, 0x3E, 0x1D, 0x47, 0x1A, 0xDE, 0xB2);
+
+ public static readonly Guid CLSID_D2D1Saturation =
+ new Guid(0x5CB2D9CF, 0x327D, 0x459F, 0xA0, 0xCE, 0x40, 0xC0, 0xB2, 0x08, 0x6B, 0xF7);
+
+ public static readonly Guid CLSID_D2D1Shadow =
+ new Guid(0xC67EA361, 0x1863, 0x4E69, 0x89, 0xDB, 0x69, 0x5D, 0x3E, 0x9A, 0x5B, 0x6B);
+
+ public static readonly Guid CLSID_D2D1SpotDiffuse =
+ new Guid(0x818A1105, 0x7932, 0x44F4, 0xAA, 0x86, 0x08, 0xAE, 0x7B, 0x2F, 0x2C, 0x93);
+
+ public static readonly Guid CLSID_D2D1SpotSpecular =
+ new Guid(0xEDAE421E, 0x7654, 0x4A37, 0x9D, 0xB8, 0x71, 0xAC, 0xC1, 0xBE, 0xB3, 0xC1);
+
+ public static readonly Guid CLSID_D2D1TableTransfer =
+ new Guid(0x5BF818C3, 0x5E43, 0x48CB, 0xB6, 0x31, 0x86, 0x83, 0x96, 0xD6, 0xA1, 0xD4);
+
+ public static readonly Guid CLSID_D2D1Tile =
+ new Guid(0xB0784138, 0x3B76, 0x4BC5, 0xB1, 0x3B, 0x0F, 0xA2, 0xAD, 0x02, 0x65, 0x9F);
+
+ public static readonly Guid CLSID_D2D1Turbulence =
+ new Guid(0xCF2BB6AE, 0x889A, 0x4AD7, 0xBA, 0x29, 0xA2, 0xFD, 0x73, 0x2C, 0x9F, 0xC9);
+
+ public static readonly Guid CLSID_D2D1UnPremultiply =
+ new Guid(0xFB9AC489, 0xAD8D, 0x41ED, 0x99, 0x99, 0xBB, 0x63, 0x47, 0xD1, 0x10, 0xF7);
+ }
+}
diff --git a/src/Windows/Avalonia.Win32/WinRT/Composition/WinUICompositedWindow.cs b/src/Windows/Avalonia.Win32/WinRT/Composition/WinUICompositedWindow.cs
new file mode 100644
index 0000000000..da56c98d56
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/Composition/WinUICompositedWindow.cs
@@ -0,0 +1,84 @@
+using System;
+using System.Numerics;
+using Avalonia.MicroCom;
+using Avalonia.OpenGL;
+using Avalonia.OpenGL.Egl;
+using Avalonia.Win32.Interop;
+
+namespace Avalonia.Win32.WinRT.Composition
+{
+ public class WinUICompositedWindow : IDisposable
+ {
+ private EglContext _syncContext;
+ private readonly IVisual _blurVisual;
+ private ICompositionTarget _compositionTarget;
+ private IVisual _contentVisual;
+ private ICompositionDrawingSurfaceInterop _surfaceInterop;
+ private PixelSize _size;
+
+ private static Guid IID_ID3D11Texture2D = Guid.Parse("6f15aaf2-d208-4e89-9ab4-489535d34f9c");
+
+
+ internal WinUICompositedWindow(EglContext syncContext,
+ ICompositionTarget compositionTarget,
+ ICompositionDrawingSurfaceInterop surfaceInterop,
+ IVisual contentVisual, IVisual blurVisual)
+ {
+ _syncContext = syncContext;
+ _blurVisual = blurVisual.CloneReference();
+ _compositionTarget = compositionTarget.CloneReference();
+ _contentVisual = contentVisual.CloneReference();
+ _surfaceInterop = surfaceInterop.CloneReference();
+ }
+
+
+ public void ResizeIfNeeded(PixelSize size)
+ {
+ using (_syncContext.EnsureLocked())
+ {
+ if (_size != size)
+ {
+ _surfaceInterop.Resize(new UnmanagedMethods.POINT { X = size.Width, Y = size.Height });
+ _contentVisual.SetSize(new Vector2(size.Width, size.Height));
+ _size = size;
+ }
+ }
+ }
+
+ public unsafe IUnknown BeginDrawToTexture(out PixelPoint offset)
+ {
+ if (!_syncContext.IsCurrent)
+ throw new InvalidOperationException();
+
+ var iid = IID_ID3D11Texture2D;
+ void* pTexture;
+ var off = _surfaceInterop.BeginDraw(null, &iid, &pTexture);
+ offset = new PixelPoint(off.X, off.Y);
+ return MicroComRuntime.CreateProxyFor(pTexture, true);
+ }
+
+ public void EndDraw()
+ {
+ if (!_syncContext.IsCurrent)
+ throw new InvalidOperationException();
+ _surfaceInterop.EndDraw();
+ }
+
+ public void SetBlur(bool enable)
+ {
+ using (_syncContext.EnsureLocked())
+ _blurVisual.SetIsVisible(enable ? 1 : 0);
+ }
+
+ public void Dispose()
+ {
+ if (_syncContext == null)
+ {
+ _blurVisual.Dispose();
+ _contentVisual.Dispose();
+ _surfaceInterop.Dispose();
+ _compositionTarget.Dispose();
+ }
+ }
+ }
+}
diff --git a/src/Windows/Avalonia.Win32/WinRT/Composition/WinUICompositorConnection.cs b/src/Windows/Avalonia.Win32/WinRT/Composition/WinUICompositorConnection.cs
new file mode 100644
index 0000000000..5056899106
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/Composition/WinUICompositorConnection.cs
@@ -0,0 +1,152 @@
+using System;
+using System.Numerics;
+using System.Runtime.InteropServices;
+using Avalonia.Logging;
+using Avalonia.MicroCom;
+using Avalonia.OpenGL;
+using Avalonia.OpenGL.Angle;
+using Avalonia.OpenGL.Egl;
+using Avalonia.Win32.Interop;
+
+namespace Avalonia.Win32.WinRT.Composition
+{
+ public class WinUICompositorConnection
+ {
+ private readonly EglContext _syncContext;
+ private IntPtr _queue;
+ private ICompositor _compositor;
+ private ICompositor2 _compositor2;
+ private ICompositorInterop _compositorInterop;
+ private AngleWin32EglDisplay _angle;
+ private ICompositionGraphicsDevice _device;
+ private EglPlatformOpenGlInterface _gl;
+ private ICompositorDesktopInterop _compositorDesktopInterop;
+
+ public WinUICompositorConnection(EglPlatformOpenGlInterface gl)
+ {
+ _gl = gl;
+ _syncContext = _gl.PrimaryEglContext;
+ _angle = (AngleWin32EglDisplay)_gl.Display;
+ _queue = NativeWinRTMethods.CreateDispatcherQueueController(new NativeWinRTMethods.DispatcherQueueOptions
+ {
+ apartmentType = NativeWinRTMethods.DISPATCHERQUEUE_THREAD_APARTMENTTYPE.DQTAT_COM_NONE,
+ dwSize = Marshal.SizeOf(),
+ threadType = NativeWinRTMethods.DISPATCHERQUEUE_THREAD_TYPE.DQTYPE_THREAD_CURRENT
+ });
+ _compositor = NativeWinRTMethods.CreateInstance("Windows.UI.Composition.Compositor");
+ _compositor2 = _compositor.QueryInterface();
+ _compositorInterop = _compositor.QueryInterface();
+ _compositorDesktopInterop = _compositor.QueryInterface();
+ using var device = MicroComRuntime.CreateProxyFor(_angle.GetDirect3DDevice(), true);
+
+ _device = _compositorInterop.CreateGraphicsDevice(device);
+ }
+
+ public EglPlatformOpenGlInterface Egl => _gl;
+
+ public static WinUICompositorConnection TryCreate(EglPlatformOpenGlInterface angle)
+ {
+ const int majorRequired = 10;
+ const int buildRequired = 16299;
+
+ var majorInstalled = Win32Platform.WindowsVersion.Major;
+ var buildInstalled = Win32Platform.WindowsVersion.Build;
+
+ if (majorInstalled >= majorRequired &&
+ buildInstalled >= buildRequired)
+ {
+ try
+ {
+ return new WinUICompositorConnection(angle);
+ }
+ catch (Exception e)
+ {
+ Logger.TryGet(LogEventLevel.Error, "WinUIComposition")
+ ?.Log(null, "Unable to initialize WinUI compositor: {0}", e);
+
+ return null;
+ }
+ }
+
+ var osVersionNotice =
+ $"Windows {majorRequired} Build {buildRequired} is required. Your machine has Windows {majorInstalled} Build {buildInstalled} installed.";
+
+ Logger.TryGet(LogEventLevel.Warning, "WinUIComposition")?.Log(null,
+ $"Unable to initialize WinUI compositor: {osVersionNotice}");
+
+ return null;
+ }
+
+
+ public WinUICompositedWindow CreateWindow(IntPtr hWnd)
+ {
+ using var sc = _syncContext.EnsureLocked();
+ using var desktopTarget = _compositorDesktopInterop.CreateDesktopWindowTarget(hWnd, 0);
+ using var target = desktopTarget.QueryInterface();
+
+ using var drawingSurface = _device.CreateDrawingSurface(new UnmanagedMethods.SIZE(), DirectXPixelFormat.B8G8R8A8UIntNormalized,
+ DirectXAlphaMode.Premultiplied);
+ using var surface = drawingSurface.QueryInterface();
+ using var surfaceInterop = drawingSurface.QueryInterface();
+
+ using var surfaceBrush = _compositor.CreateSurfaceBrushWithSurface(surface);
+ using var brush = surfaceBrush.QueryInterface();
+
+ using var spriteVisual = _compositor.CreateSpriteVisual();
+ spriteVisual.SetBrush(brush);
+ using var visual = spriteVisual.QueryInterface();
+ using var visual2 = spriteVisual.QueryInterface();
+ //visual2.SetRelativeSizeAdjustment(new Vector2(1, 1));
+ using var container = _compositor.CreateContainerVisual();
+ using var containerVisual = container.QueryInterface();
+ using var containerVisual2 = container.QueryInterface();
+ containerVisual2.SetRelativeSizeAdjustment(new Vector2(1, 1));
+ using var containerChildren = container.Children;
+
+ target.SetRoot(containerVisual);
+
+ using var blur = CreateBlur();
+
+ containerChildren.InsertAtTop(blur);
+ containerChildren.InsertAtTop(visual);
+ //visual.SetCompositeMode(CompositionCompositeMode.SourceOver);
+
+ return new WinUICompositedWindow(_syncContext, target, surfaceInterop, visual, blur);
+ }
+
+ private unsafe IVisual CreateBlur()
+ {
+ using var backDropParameterFactory = NativeWinRTMethods.CreateActivationFactory(
+ "Windows.UI.Composition.CompositionEffectSourceParameter");
+ using var backdropString = new HStringInterop("backdrop");
+ using var backDropParameter =
+ backDropParameterFactory.Create(backdropString.Handle);
+ using var backDropParameterAsSource = backDropParameter.QueryInterface();
+ var blurEffect = new WinUIGaussianBlurEffect(backDropParameterAsSource);
+ using var blurEffectFactory = _compositor.CreateEffectFactory(blurEffect);
+ using var backdrop = _compositor2.CreateBackdropBrush();
+ using var backdropBrush = backdrop.QueryInterface();
+
+
+ var saturateEffect = new SaturationEffect(blurEffect);
+ using var satEffectFactory = _compositor.CreateEffectFactory(saturateEffect);
+ using var sat = satEffectFactory.CreateBrush();
+ using var satBrush = sat.QueryInterface();
+ sat.SetSourceParameter(backdropString.Handle, backdropBrush);
+
+ using var spriteVisual = _compositor.CreateSpriteVisual();
+ using var visual = spriteVisual.QueryInterface();
+ using var visual2 = spriteVisual.QueryInterface();
+
+
+
+ spriteVisual.SetBrush(satBrush);
+ //visual.SetIsVisible(0);
+ visual2.SetRelativeSizeAdjustment(new Vector2(1.0f, 1.0f));
+
+ return visual.CloneReference();
+ }
+
+
+ }
+}
diff --git a/src/Windows/Avalonia.Win32/WinRT/Composition/WinUIEffectBase.cs b/src/Windows/Avalonia.Win32/WinRT/Composition/WinUIEffectBase.cs
new file mode 100644
index 0000000000..ea75a2f311
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/Composition/WinUIEffectBase.cs
@@ -0,0 +1,135 @@
+using System;
+using System.Linq;
+using System.Runtime.InteropServices;
+using Avalonia.MicroCom;
+
+namespace Avalonia.Win32.WinRT.Composition
+{
+ abstract class WinUIEffectBase : WinRTInspectable, IGraphicsEffect, IGraphicsEffectSource, IGraphicsEffectD2D1Interop
+ {
+ private IGraphicsEffectSource[] _sources;
+
+ public WinUIEffectBase(params IGraphicsEffectSource[] _sources)
+ {
+ this._sources = _sources.Select(e =>
+ {
+ if (e is WinUIEffectBase)
+ return e;
+ return e.CloneReference();
+ }).ToArray();
+ }
+
+ public IntPtr Name => IntPtr.Zero;
+
+ public void SetName(IntPtr name)
+ {
+
+ }
+
+ public abstract Guid EffectId { get; }
+ public unsafe void GetNamedPropertyMapping(IntPtr name, uint* index, GRAPHICS_EFFECT_PROPERTY_MAPPING* mapping) =>
+ throw new COMException("Not supported", unchecked((int)0x80004001));
+
+ public abstract uint PropertyCount { get; }
+ public abstract IPropertyValue GetProperty(uint index);
+
+ public IGraphicsEffectSource GetSource(uint index)
+ {
+ if (_sources == null || index> _sources.Length)
+ throw new COMException("Invalid index", unchecked((int)0x80070057));
+ return _sources[index];
+ }
+
+ public uint SourceCount => (uint)(_sources?.Length ?? 0);
+
+ public override void OnUnreferencedFromNative()
+ {
+ if (_sources == null)
+ return;
+
+ /*foreach(var s in _sources)
+ s.Dispose();*/
+ _sources = null;
+ }
+ }
+
+ class WinUIGaussianBlurEffect : WinUIEffectBase
+ {
+ public WinUIGaussianBlurEffect(IGraphicsEffectSource source) : base(source)
+ {
+ }
+
+ enum D2D1_GAUSSIANBLUR_OPTIMIZATION
+ {
+ D2D1_GAUSSIANBLUR_OPTIMIZATION_SPEED,
+ D2D1_GAUSSIANBLUR_OPTIMIZATION_BALANCED,
+ D2D1_GAUSSIANBLUR_OPTIMIZATION_QUALITY,
+ D2D1_GAUSSIANBLUR_OPTIMIZATION_FORCE_DWORD
+ };
+
+ enum D2D1_BORDER_MODE
+ {
+ D2D1_BORDER_MODE_SOFT,
+ D2D1_BORDER_MODE_HARD,
+ D2D1_BORDER_MODE_FORCE_DWORD
+ };
+
+ enum D2D1GaussianBlurProp
+ {
+ D2D1_GAUSSIANBLUR_PROP_STANDARD_DEVIATION,
+ D2D1_GAUSSIANBLUR_PROP_OPTIMIZATION,
+ D2D1_GAUSSIANBLUR_PROP_BORDER_MODE,
+ D2D1_GAUSSIANBLUR_PROP_FORCE_DWORD
+ };
+
+ public override Guid EffectId => D2DEffects.CLSID_D2D1GaussianBlur;
+
+ public override uint PropertyCount => 3;
+
+ public override IPropertyValue GetProperty(uint index)
+ {
+ switch ((D2D1GaussianBlurProp)index)
+ {
+ case D2D1GaussianBlurProp.D2D1_GAUSSIANBLUR_PROP_STANDARD_DEVIATION:
+ return new WinRTPropertyValue(30.0f);
+
+ case D2D1GaussianBlurProp.D2D1_GAUSSIANBLUR_PROP_OPTIMIZATION:
+ return new WinRTPropertyValue((uint)D2D1_GAUSSIANBLUR_OPTIMIZATION
+ .D2D1_GAUSSIANBLUR_OPTIMIZATION_BALANCED);
+
+ case D2D1GaussianBlurProp.D2D1_GAUSSIANBLUR_PROP_BORDER_MODE:
+ return new WinRTPropertyValue((uint)D2D1_BORDER_MODE.D2D1_BORDER_MODE_HARD);
+ }
+
+ return null;
+ }
+ }
+
+ class SaturationEffect : WinUIEffectBase
+ {
+ public SaturationEffect(IGraphicsEffectSource source) : base(source)
+ {
+ }
+
+ enum D2D1_SATURATION_PROP
+ {
+ D2D1_SATURATION_PROP_SATURATION,
+ D2D1_SATURATION_PROP_FORCE_DWORD
+ };
+
+ public override Guid EffectId => D2DEffects.CLSID_D2D1Saturation;
+
+ public override uint PropertyCount => 1;
+
+ public override IPropertyValue GetProperty(uint index)
+ {
+ switch ((D2D1_SATURATION_PROP)index)
+ {
+ case D2D1_SATURATION_PROP.D2D1_SATURATION_PROP_SATURATION:
+ return new WinRTPropertyValue(2.0f);
+ }
+
+ return null;
+ }
+ }
+}
diff --git a/src/Windows/Avalonia.Win32/WinRT/Composition/WinUiCompositedWindowSurface.cs b/src/Windows/Avalonia.Win32/WinRT/Composition/WinUiCompositedWindowSurface.cs
new file mode 100644
index 0000000000..9d80803b91
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/Composition/WinUiCompositedWindowSurface.cs
@@ -0,0 +1,114 @@
+using System;
+using System.Runtime.InteropServices;
+using Avalonia.MicroCom;
+using Avalonia.OpenGL.Angle;
+using Avalonia.OpenGL.Egl;
+using Avalonia.OpenGL.Surfaces;
+using Avalonia.Utilities;
+using Avalonia.Win32.Interop;
+
+namespace Avalonia.Win32.WinRT.Composition
+{
+ internal class WinUiCompositedWindowSurface : EglGlPlatformSurfaceBase, IBlurHost, IDisposable
+ {
+ private readonly WinUICompositorConnection _connection;
+ private EglPlatformOpenGlInterface _egl;
+ private readonly EglGlPlatformSurfaceBase.IEglWindowGlPlatformSurfaceInfo _info;
+ private IRef _window;
+ private bool _enableBlur;
+
+ public WinUiCompositedWindowSurface(WinUICompositorConnection connection, IEglWindowGlPlatformSurfaceInfo info) : base()
+ {
+ _connection = connection;
+ _egl = connection.Egl;
+ _info = info;
+ }
+
+ public override IGlPlatformSurfaceRenderTarget CreateGlRenderTarget()
+ {
+ using (_egl.PrimaryContext.EnsureCurrent())
+ {
+ if (_window?.Item == null)
+ {
+ _window = RefCountable.Create(_connection.CreateWindow(_info.Handle));
+ _window.Item.SetBlur(_enableBlur);
+ }
+
+ return new CompositionRenderTarget(_egl, _window, _info);
+ }
+ }
+
+ class CompositionRenderTarget : EglPlatformSurfaceRenderTargetBase
+ {
+ private readonly EglPlatformOpenGlInterface _egl;
+ private readonly IRef _window;
+ private readonly IEglWindowGlPlatformSurfaceInfo _info;
+
+ public CompositionRenderTarget(EglPlatformOpenGlInterface egl,
+ IRef window,
+ IEglWindowGlPlatformSurfaceInfo info)
+ : base(egl)
+ {
+ _egl = egl;
+ _window = window.Clone();
+ _info = info;
+ _window.Item.ResizeIfNeeded(_info.Size);
+ }
+
+ public override IGlPlatformSurfaceRenderingSession BeginDraw()
+ {
+ var contextLock = _egl.PrimaryEglContext.EnsureCurrent();
+ IUnknown texture = null;
+ EglSurface surface = null;
+ var success = false;
+ try
+ {
+ if (_window?.Item == null)
+ throw new ObjectDisposedException(GetType().FullName);
+
+ var size = _info.Size;
+ _window.Item.ResizeIfNeeded(size);
+ texture = _window.Item.BeginDrawToTexture(out var offset);
+
+ surface = ((AngleWin32EglDisplay) _egl.Display).WrapDirect3D11Texture(_egl,
+ texture.GetNativeIntPtr(),
+ offset.X, offset.Y, size.Width, size.Height);
+
+ var res = base.BeginDraw(surface, _info, () =>
+ {
+ _window.Item.EndDraw();
+ texture?.Dispose();
+ surface?.Dispose();
+ contextLock?.Dispose();
+ }, true);
+ success = true;
+ return res;
+ }
+ finally
+ {
+ if (!success)
+ {
+ surface?.Dispose();
+ texture?.Dispose();
+ contextLock.Dispose();
+ }
+ }
+ }
+ }
+
+ public void SetBlur(bool enable)
+ {
+ _enableBlur = enable;
+ _window?.Item?.SetBlur(enable);
+ }
+
+ public void Dispose()
+ {
+ using (_egl.PrimaryEglContext.EnsureLocked())
+ {
+ _window?.Dispose();
+ _window = null;
+ }
+ }
+ }
+}
diff --git a/src/Windows/Avalonia.Win32/WinRT/IBlurHost.cs b/src/Windows/Avalonia.Win32/WinRT/IBlurHost.cs
new file mode 100644
index 0000000000..81c0e3e185
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/IBlurHost.cs
@@ -0,0 +1,7 @@
+namespace Avalonia.Win32.WinRT
+{
+ public interface IBlurHost
+ {
+ void SetBlur(bool enable);
+ }
+}
diff --git a/src/Windows/Avalonia.Win32/WinRT/NativeWinRTMethods.cs b/src/Windows/Avalonia.Win32/WinRT/NativeWinRTMethods.cs
new file mode 100644
index 0000000000..087bd2fd43
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/NativeWinRTMethods.cs
@@ -0,0 +1,140 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.IO;
+using System.Reflection;
+using System.Runtime.InteropServices;
+using System.Runtime.InteropServices.WindowsRuntime;
+using System.Threading;
+using Avalonia.MicroCom;
+using Avalonia.Win32.Interop;
+
+namespace Avalonia.Win32.WinRT
+{
+ internal static class NativeWinRTMethods
+ {
+ [DllImport("api-ms-win-core-winrt-string-l1-1-0.dll", CallingConvention = CallingConvention.StdCall,
+ PreserveSig = false)]
+ internal static extern unsafe IntPtr WindowsCreateString(
+ [MarshalAs(UnmanagedType.LPWStr)] string sourceString,
+ int length);
+
+ internal static IntPtr WindowsCreateString(string sourceString)
+ => WindowsCreateString(sourceString, sourceString.Length);
+
+ [DllImport("api-ms-win-core-winrt-string-l1-1-0.dll",
+ CallingConvention = CallingConvention.StdCall, PreserveSig = false)]
+ internal static extern unsafe IntPtr WindowsDeleteString(IntPtr hString);
+
+ [DllImport("Windows.UI.Composition", EntryPoint = "DllGetActivationFactory",
+ CallingConvention = CallingConvention.StdCall, PreserveSig = false)]
+ private extern static IntPtr GetWindowsUICompositionActivationFactory(
+ IntPtr activatableClassId);
+
+ internal static IActivationFactory GetWindowsUICompositionActivationFactory(string className)
+ {//"Windows.UI.Composition.Compositor"
+ var s = WindowsCreateString(className);
+ var factory = GetWindowsUICompositionActivationFactory(s);
+ return MicroComRuntime.CreateProxyFor(factory, true);
+ }
+
+ [UnmanagedFunctionPointer(CallingConvention.StdCall)]
+ delegate int GetActivationFactoryDelegate(IntPtr classId, out IntPtr ppv);
+
+ internal static T CreateInstance(string fullName) where T : IUnknown
+ {
+ var s = WindowsCreateString(fullName);
+ EnsureRoInitialized();
+ var pUnk = RoActivateInstance(s);
+ using var unk = MicroComRuntime.CreateProxyFor(pUnk, true);
+ WindowsDeleteString(s);
+ return MicroComRuntime.QueryInterface(unk);
+ }
+
+ internal static TFactory CreateActivationFactory(string fullName) where TFactory : IUnknown
+ {
+ var s = WindowsCreateString(fullName);
+ EnsureRoInitialized();
+ var guid = MicroComRuntime.GetGuidFor(typeof(TFactory));
+ var pUnk = RoGetActivationFactory(s, ref guid);
+ using var unk = MicroComRuntime.CreateProxyFor(pUnk, true);
+ WindowsDeleteString(s);
+ return MicroComRuntime.QueryInterface(unk);
+ }
+
+ internal enum DISPATCHERQUEUE_THREAD_APARTMENTTYPE
+ {
+ DQTAT_COM_NONE = 0,
+ DQTAT_COM_ASTA = 1,
+ DQTAT_COM_STA = 2
+ };
+
+ internal enum DISPATCHERQUEUE_THREAD_TYPE
+ {
+ DQTYPE_THREAD_DEDICATED = 1,
+ DQTYPE_THREAD_CURRENT = 2,
+ };
+
+ [StructLayout(LayoutKind.Sequential)]
+ internal struct DispatcherQueueOptions
+ {
+ public int dwSize;
+
+ [MarshalAs(UnmanagedType.I4)]
+ public DISPATCHERQUEUE_THREAD_TYPE threadType;
+
+ [MarshalAs(UnmanagedType.I4)]
+ public DISPATCHERQUEUE_THREAD_APARTMENTTYPE apartmentType;
+ };
+
+ [DllImport("coremessaging.dll", PreserveSig = false)]
+ internal static extern IntPtr CreateDispatcherQueueController(DispatcherQueueOptions options);
+
+ internal enum RO_INIT_TYPE
+ {
+ RO_INIT_SINGLETHREADED = 0, // Single-threaded application
+ RO_INIT_MULTITHREADED = 1, // COM calls objects on any thread.
+ }
+
+ [DllImport("combase.dll", PreserveSig = false)]
+ private static extern void RoInitialize(RO_INIT_TYPE initType);
+
+ [DllImport("combase.dll", PreserveSig = false)]
+ private static extern IntPtr RoActivateInstance(IntPtr activatableClassId);
+
+ [DllImport("combase.dll", PreserveSig = false)]
+ private static extern IntPtr RoGetActivationFactory(IntPtr activatableClassId, ref Guid iid);
+
+ private static bool _initialized;
+ private static void EnsureRoInitialized()
+ {
+ if (_initialized)
+ return;
+ RoInitialize(Thread.CurrentThread.GetApartmentState() == ApartmentState.STA ?
+ RO_INIT_TYPE.RO_INIT_SINGLETHREADED :
+ RO_INIT_TYPE.RO_INIT_MULTITHREADED);
+ _initialized = true;
+ }
+ }
+
+ class HStringInterop : IDisposable
+ {
+ private IntPtr _s;
+
+ public HStringInterop(string s)
+ {
+ _s = s == null ? IntPtr.Zero : NativeWinRTMethods.WindowsCreateString(s);
+ }
+
+ public IntPtr Handle => _s;
+
+ public void Dispose()
+ {
+ if (_s != IntPtr.Zero)
+ {
+ NativeWinRTMethods.WindowsDeleteString(_s);
+ _s = IntPtr.Zero;
+ }
+ }
+ }
+}
diff --git a/src/Windows/Avalonia.Win32/WinRT/WinRT.Generated.cs b/src/Windows/Avalonia.Win32/WinRT/WinRT.Generated.cs
new file mode 100644
index 0000000000..0968212fe0
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/WinRT.Generated.cs
@@ -0,0 +1,8713 @@
+#pragma warning disable 108
+using System;
+using System.Text;
+using System.Collections;
+using System.Collections.Generic;
+using Avalonia.MicroCom;
+
+namespace Avalonia.Win32.WinRT
+{
+ internal enum TrustLevel
+ {
+ BaseTrust,
+ PartialTrust,
+ FullTrust
+ }
+
+ internal enum DirectXAlphaMode
+ {
+ Unspecified,
+ Premultiplied,
+ Straight,
+ Ignore
+ }
+
+ internal enum DirectXPixelFormat
+ {
+ Unknown = 0,
+ R32G32B32A32Typeless = 1,
+ R32G32B32A32Float = 2,
+ R32G32B32A32UInt = 3,
+ R32G32B32A32Int = 4,
+ R32G32B32Typeless = 5,
+ R32G32B32Float = 6,
+ R32G32B32UInt = 7,
+ R32G32B32Int = 8,
+ R16G16B16A16Typeless = 9,
+ R16G16B16A16Float = 10,
+ R16G16B16A16UIntNormalized = 11,
+ R16G16B16A16UInt = 12,
+ R16G16B16A16IntNormalized = 13,
+ R16G16B16A16Int = 14,
+ R32G32Typeless = 15,
+ R32G32Float = 16,
+ R32G32UInt = 17,
+ R32G32Int = 18,
+ R32G8X24Typeless = 19,
+ D32FloatS8X24UInt = 20,
+ R32FloatX8X24Typeless = 21,
+ X32TypelessG8X24UInt = 22,
+ R10G10B10A2Typeless = 23,
+ R10G10B10A2UIntNormalized = 24,
+ R10G10B10A2UInt = 25,
+ R11G11B10Float = 26,
+ R8G8B8A8Typeless = 27,
+ R8G8B8A8UIntNormalized = 28,
+ R8G8B8A8UIntNormalizedSrgb = 29,
+ R8G8B8A8UInt = 30,
+ R8G8B8A8IntNormalized = 31,
+ R8G8B8A8Int = 32,
+ R16G16Typeless = 33,
+ R16G16Float = 34,
+ R16G16UIntNormalized = 35,
+ R16G16UInt = 36,
+ R16G16IntNormalized = 37,
+ R16G16Int = 38,
+ R32Typeless = 39,
+ D32Float = 40,
+ R32Float = 41,
+ R32UInt = 42,
+ R32Int = 43,
+ R24G8Typeless = 44,
+ D24UIntNormalizedS8UInt = 45,
+ R24UIntNormalizedX8Typeless = 46,
+ X24TypelessG8UInt = 47,
+ R8G8Typeless = 48,
+ R8G8UIntNormalized = 49,
+ R8G8UInt = 50,
+ R8G8IntNormalized = 51,
+ R8G8Int = 52,
+ R16Typeless = 53,
+ R16Float = 54,
+ D16UIntNormalized = 55,
+ R16UIntNormalized = 56,
+ R16UInt = 57,
+ R16IntNormalized = 58,
+ R16Int = 59,
+ R8Typeless = 60,
+ R8UIntNormalized = 61,
+ R8UInt = 62,
+ R8IntNormalized = 63,
+ R8Int = 64,
+ A8UIntNormalized = 65,
+ R1UIntNormalized = 66,
+ R9G9B9E5SharedExponent = 67,
+ R8G8B8G8UIntNormalized = 68,
+ G8R8G8B8UIntNormalized = 69,
+ BC1Typeless = 70,
+ BC1UIntNormalized = 71,
+ BC1UIntNormalizedSrgb = 72,
+ BC2Typeless = 73,
+ BC2UIntNormalized = 74,
+ BC2UIntNormalizedSrgb = 75,
+ BC3Typeless = 76,
+ BC3UIntNormalized = 77,
+ BC3UIntNormalizedSrgb = 78,
+ BC4Typeless = 79,
+ BC4UIntNormalized = 80,
+ BC4IntNormalized = 81,
+ BC5Typeless = 82,
+ BC5UIntNormalized = 83,
+ BC5IntNormalized = 84,
+ B5G6R5UIntNormalized = 85,
+ B5G5R5A1UIntNormalized = 86,
+ B8G8R8A8UIntNormalized = 87,
+ B8G8R8X8UIntNormalized = 88,
+ R10G10B10XRBiasA2UIntNormalized = 89,
+ B8G8R8A8Typeless = 90,
+ B8G8R8A8UIntNormalizedSrgb = 91,
+ B8G8R8X8Typeless = 92,
+ B8G8R8X8UIntNormalizedSrgb = 93,
+ BC6HTypeless = 94,
+ BC6H16UnsignedFloat = 95,
+ BC6H16Float = 96,
+ BC7Typeless = 97,
+ BC7UIntNormalized = 98,
+ BC7UIntNormalizedSrgb = 99,
+ Ayuv = 100,
+ Y410 = 101,
+ Y416 = 102,
+ NV12 = 103,
+ P010 = 104,
+ P016 = 105,
+ Opaque420 = 106,
+ Yuy2 = 107,
+ Y210 = 108,
+ Y216 = 109,
+ NV11 = 110,
+ AI44 = 111,
+ IA44 = 112,
+ P8 = 113,
+ A8P8 = 114,
+ B4G4R4A4UIntNormalized = 115,
+ P208 = 130,
+ V208 = 131,
+ V408 = 132
+ }
+
+ internal enum PropertyType
+ {
+ Empty = 0,
+ UInt8 = 1,
+ Int16 = 2,
+ UInt16 = 3,
+ Int32 = 4,
+ UInt32 = 5,
+ Int64 = 6,
+ UInt64 = 7,
+ Single = 8,
+ Double = 9,
+ Char16 = 10,
+ Boolean = 11,
+ String = 12,
+ Inspectable = 13,
+ DateTime = 14,
+ TimeSpan = 15,
+ Guid = 16,
+ Point = 17,
+ Size = 18,
+ Rect = 19,
+ OtherType = 20,
+ UInt8Array = 1025,
+ Int16Array = 1026,
+ UInt16Array = 1027,
+ Int32Array = 1028,
+ UInt32Array = 1029,
+ Int64Array = 1030,
+ UInt64Array = 1031,
+ SingleArray = 1032,
+ DoubleArray = 1033,
+ Char16Array = 1034,
+ BooleanArray = 1035,
+ StringArray = 1036,
+ InspectableArray = 1037,
+ DateTimeArray = 1038,
+ TimeSpanArray = 1039,
+ GuidArray = 1040,
+ PointArray = 1041,
+ SizeArray = 1042,
+ RectArray = 1043,
+ OtherTypeArray = 1044
+ }
+
+ internal enum AsyncStatus
+ {
+ Started = 0,
+ Completed,
+ Canceled,
+ Error
+ }
+
+ internal enum CompositionBatchTypes
+ {
+ None = 0x0,
+ Animation = 0x1,
+ Effect = 0x2,
+ InfiniteAnimation = 0x4,
+ AllAnimations = 0x5
+ }
+
+ internal enum CompositionBackfaceVisibility
+ {
+ Inherit,
+ Visible,
+ Hidden
+ }
+
+ internal enum CompositionBorderMode
+ {
+ Inherit,
+ Soft,
+ Hard
+ }
+
+ internal enum CompositionCompositeMode
+ {
+ Inherit,
+ SourceOver,
+ DestinationInvert,
+ MinBlend
+ }
+
+ internal enum GRAPHICS_EFFECT_PROPERTY_MAPPING
+ {
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_UNKNOWN,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_DIRECT,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORX,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORY,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORZ,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORW,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_RECT_TO_VECTOR4,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_RADIANS_TO_DEGREES,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_COLORMATRIX_ALPHA_MODE,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_COLOR_TO_VECTOR3,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_COLOR_TO_VECTOR4
+ }
+
+ internal enum CompositionEffectFactoryLoadStatus
+ {
+ Success = 0,
+ EffectTooComplex = 1,
+ Pending = 2,
+ Other = -1
+ }
+
+ internal unsafe partial interface IInspectable : Avalonia.MicroCom.IUnknown
+ {
+ void GetIids(ulong* iidCount, Guid** iids);
+ IntPtr RuntimeClassName
+ {
+ get;
+ }
+
+ TrustLevel TrustLevel
+ {
+ get;
+ }
+ }
+
+ internal unsafe partial interface IPropertyValue : IInspectable
+ {
+ PropertyType Type
+ {
+ get;
+ }
+
+ int IsNumericScalar
+ {
+ get;
+ }
+
+ byte UInt8
+ {
+ get;
+ }
+
+ short Int16
+ {
+ get;
+ }
+
+ ushort UInt16
+ {
+ get;
+ }
+
+ int Int32
+ {
+ get;
+ }
+
+ uint UInt32
+ {
+ get;
+ }
+
+ long Int64
+ {
+ get;
+ }
+
+ ulong UInt64
+ {
+ get;
+ }
+
+ float Single
+ {
+ get;
+ }
+
+ double Double
+ {
+ get;
+ }
+
+ System.Char Char16
+ {
+ get;
+ }
+
+ int Boolean
+ {
+ get;
+ }
+
+ IntPtr String
+ {
+ get;
+ }
+
+ System.Guid Guid
+ {
+ get;
+ }
+
+ void GetDateTime(void* value);
+ void GetTimeSpan(void* value);
+ void GetPoint(void* value);
+ void GetSize(void* value);
+ void GetRect(void* value);
+ byte* GetUInt8Array(uint* __valueSize);
+ short* GetInt16Array(uint* __valueSize);
+ ushort* GetUInt16Array(uint* __valueSize);
+ int* GetInt32Array(uint* __valueSize);
+ uint* GetUInt32Array(uint* __valueSize);
+ long* GetInt64Array(uint* __valueSize);
+ ulong* GetUInt64Array(uint* __valueSize);
+ float* GetSingleArray(uint* __valueSize);
+ double* GetDoubleArray(uint* __valueSize);
+ System.Char* GetChar16Array(uint* __valueSize);
+ int* GetBooleanArray(uint* __valueSize);
+ IntPtr* GetStringArray(uint* __valueSize);
+ void** GetInspectableArray(uint* __valueSize);
+ System.Guid* GetGuidArray(uint* __valueSize);
+ void* GetDateTimeArray(uint* __valueSize);
+ void* GetTimeSpanArray(uint* __valueSize);
+ void* GetPointArray(uint* __valueSize);
+ void* GetSizeArray(uint* __valueSize);
+ void* GetRectArray(uint* __valueSize);
+ }
+
+ internal unsafe partial interface IAsyncActionCompletedHandler : Avalonia.MicroCom.IUnknown
+ {
+ void Invoke(IAsyncAction asyncInfo, AsyncStatus asyncStatus);
+ }
+
+ internal unsafe partial interface IAsyncAction : IInspectable
+ {
+ void SetCompleted(IAsyncActionCompletedHandler handler);
+ IAsyncActionCompletedHandler Completed
+ {
+ get;
+ }
+
+ void GetResults();
+ }
+
+ internal unsafe partial interface IDispatcherQueue : IInspectable
+ {
+ }
+
+ internal unsafe partial interface IDispatcherQueueController : IInspectable
+ {
+ IDispatcherQueue DispatcherQueue
+ {
+ get;
+ }
+
+ IAsyncAction ShutdownQueueAsync();
+ }
+
+ internal unsafe partial interface IActivationFactory : IInspectable
+ {
+ IntPtr ActivateInstance();
+ }
+
+ internal unsafe partial interface ICompositor : IInspectable
+ {
+ void* CreateColorKeyFrameAnimation();
+ void* CreateColorBrush();
+ ICompositionColorBrush CreateColorBrushWithColor(Avalonia.Win32.WinRT.WinRTColor* color);
+ IContainerVisual CreateContainerVisual();
+ void* CreateCubicBezierEasingFunction(System.Numerics.Vector2 controlPoint1, System.Numerics.Vector2 controlPoint2);
+ ICompositionEffectFactory CreateEffectFactory(IGraphicsEffect graphicsEffect);
+ void* CreateEffectFactoryWithProperties(void* graphicsEffect, void* animatableProperties);
+ void* CreateExpressionAnimation();
+ void* CreateExpressionAnimationWithExpression(IntPtr expression);
+ void* CreateInsetClip();
+ void* CreateInsetClipWithInsets(float leftInset, float topInset, float rightInset, float bottomInset);
+ void* CreateLinearEasingFunction();
+ void* CreatePropertySet();
+ void* CreateQuaternionKeyFrameAnimation();
+ void* CreateScalarKeyFrameAnimation();
+ void* CreateScopedBatch(CompositionBatchTypes batchType);
+ ISpriteVisual CreateSpriteVisual();
+ ICompositionSurfaceBrush CreateSurfaceBrush();
+ ICompositionSurfaceBrush CreateSurfaceBrushWithSurface(ICompositionSurface surface);
+ void* CreateTargetForCurrentView();
+ void* CreateVector2KeyFrameAnimation();
+ void* CreateVector3KeyFrameAnimation();
+ void* CreateVector4KeyFrameAnimation();
+ void* GetCommitBatch(CompositionBatchTypes batchType);
+ }
+
+ internal unsafe partial interface ICompositor2 : IInspectable
+ {
+ void* CreateAmbientLight();
+ void* CreateAnimationGroup();
+ ICompositionBackdropBrush CreateBackdropBrush();
+ void* CreateDistantLight();
+ void* CreateDropShadow();
+ void* CreateImplicitAnimationCollection();
+ void* CreateLayerVisual();
+ void* CreateMaskBrush();
+ void* CreateNineGridBrush();
+ void* CreatePointLight();
+ void* CreateSpotLight();
+ void* CreateStepEasingFunction();
+ void* CreateStepEasingFunctionWithStepCount(int stepCount);
+ }
+
+ internal unsafe partial interface ISpriteVisual : IInspectable
+ {
+ ICompositionBrush Brush
+ {
+ get;
+ }
+
+ void SetBrush(ICompositionBrush value);
+ }
+
+ internal unsafe partial interface ICompositionDrawingSurfaceInterop : Avalonia.MicroCom.IUnknown
+ {
+ Avalonia.Win32.Interop.UnmanagedMethods.POINT BeginDraw(Avalonia.Win32.Interop.UnmanagedMethods.RECT* updateRect, Guid* iid, void** updateObject);
+ void EndDraw();
+ void Resize(Avalonia.Win32.Interop.UnmanagedMethods.POINT sizePixels);
+ void Scroll(Avalonia.Win32.Interop.UnmanagedMethods.RECT* scrollRect, Avalonia.Win32.Interop.UnmanagedMethods.RECT* clipRect, int offsetX, int offsetY);
+ void ResumeDraw();
+ void SuspendDraw();
+ }
+
+ internal unsafe partial interface ICompositionGraphicsDeviceInterop : Avalonia.MicroCom.IUnknown
+ {
+ IUnknown RenderingDevice
+ {
+ get;
+ }
+
+ void SetRenderingDevice(IUnknown value);
+ }
+
+ internal unsafe partial interface ICompositorInterop : Avalonia.MicroCom.IUnknown
+ {
+ ICompositionSurface CreateCompositionSurfaceForHandle(IntPtr swapChain);
+ ICompositionSurface CreateCompositionSurfaceForSwapChain(IUnknown swapChain);
+ ICompositionGraphicsDevice CreateGraphicsDevice(IUnknown renderingDevice);
+ }
+
+ internal unsafe partial interface ISwapChainInterop : Avalonia.MicroCom.IUnknown
+ {
+ void SetSwapChain(IUnknown swapChain);
+ }
+
+ internal unsafe partial interface ICompositorDesktopInterop : Avalonia.MicroCom.IUnknown
+ {
+ IDesktopWindowTarget CreateDesktopWindowTarget(IntPtr hwndTarget, int isTopmost);
+ void EnsureOnThread(int threadId);
+ }
+
+ internal unsafe partial interface IDesktopWindowTargetInterop : Avalonia.MicroCom.IUnknown
+ {
+ IntPtr HWnd
+ {
+ get;
+ }
+ }
+
+ internal unsafe partial interface IDesktopWindowContentBridgeInterop : Avalonia.MicroCom.IUnknown
+ {
+ void Initialize(ICompositor compositor, IntPtr parentHwnd);
+ IntPtr HWnd
+ {
+ get;
+ }
+
+ float AppliedScaleFactor
+ {
+ get;
+ }
+ }
+
+ internal unsafe partial interface ICompositionGraphicsDevice : IInspectable
+ {
+ ICompositionDrawingSurface CreateDrawingSurface(Avalonia.Win32.Interop.UnmanagedMethods.SIZE sizePixels, DirectXPixelFormat pixelFormat, DirectXAlphaMode alphaMode);
+ void AddRenderingDeviceReplaced(void* handler, void* token);
+ void RemoveRenderingDeviceReplaced(int token);
+ }
+
+ internal unsafe partial interface ICompositionSurface : IInspectable
+ {
+ }
+
+ internal unsafe partial interface IDesktopWindowTarget : IInspectable
+ {
+ int IsTopmost
+ {
+ get;
+ }
+ }
+
+ internal unsafe partial interface ICompositionDrawingSurface : IInspectable
+ {
+ DirectXAlphaMode AlphaMode
+ {
+ get;
+ }
+
+ DirectXPixelFormat PixelFormat
+ {
+ get;
+ }
+
+ Avalonia.Win32.Interop.UnmanagedMethods.POINT Size
+ {
+ get;
+ }
+ }
+
+ internal unsafe partial interface ICompositionSurfaceBrush : IInspectable
+ {
+ }
+
+ internal unsafe partial interface ICompositionBrush : IInspectable
+ {
+ }
+
+ internal unsafe partial interface IVisual : IInspectable
+ {
+ System.Numerics.Vector2 AnchorPoint
+ {
+ get;
+ }
+
+ void SetAnchorPoint(System.Numerics.Vector2 value);
+ CompositionBackfaceVisibility BackfaceVisibility
+ {
+ get;
+ }
+
+ void SetBackfaceVisibility(CompositionBackfaceVisibility value);
+ CompositionBorderMode BorderMode
+ {
+ get;
+ }
+
+ void SetBorderMode(CompositionBorderMode value);
+ System.Numerics.Vector3 CenterPoint
+ {
+ get;
+ }
+
+ void SetCenterPoint(System.Numerics.Vector3 value);
+ void* Clip
+ {
+ get;
+ }
+
+ void SetClip(void* value);
+ CompositionCompositeMode CompositeMode
+ {
+ get;
+ }
+
+ void SetCompositeMode(CompositionCompositeMode value);
+ int IsVisible
+ {
+ get;
+ }
+
+ void SetIsVisible(int value);
+ System.Numerics.Vector3 Offset
+ {
+ get;
+ }
+
+ void SetOffset(System.Numerics.Vector3 value);
+ float Opacity
+ {
+ get;
+ }
+
+ void SetOpacity(float value);
+ System.Numerics.Quaternion Orientation
+ {
+ get;
+ }
+
+ void SetOrientation(System.Numerics.Quaternion value);
+ IContainerVisual Parent
+ {
+ get;
+ }
+
+ float RotationAngle
+ {
+ get;
+ }
+
+ void SetRotationAngle(float value);
+ float RotationAngleInDegrees
+ {
+ get;
+ }
+
+ void SetRotationAngleInDegrees(float value);
+ System.Numerics.Vector3 RotationAxis
+ {
+ get;
+ }
+
+ void SetRotationAxis(System.Numerics.Vector3 value);
+ System.Numerics.Vector3 Scale
+ {
+ get;
+ }
+
+ void SetScale(System.Numerics.Vector3 value);
+ System.Numerics.Vector2 Size
+ {
+ get;
+ }
+
+ void SetSize(System.Numerics.Vector2 value);
+ System.Numerics.Matrix4x4 TransformMatrix
+ {
+ get;
+ }
+
+ void SetTransformMatrix(System.Numerics.Matrix4x4 value);
+ }
+
+ internal unsafe partial interface IVisual2 : IInspectable
+ {
+ IVisual ParentForTransform
+ {
+ get;
+ }
+
+ void SetParentForTransform(IVisual value);
+ System.Numerics.Vector3 RelativeOffsetAdjustment
+ {
+ get;
+ }
+
+ void SetRelativeOffsetAdjustment(System.Numerics.Vector3 value);
+ System.Numerics.Vector2 RelativeSizeAdjustment
+ {
+ get;
+ }
+
+ void SetRelativeSizeAdjustment(System.Numerics.Vector2 value);
+ }
+
+ internal unsafe partial interface IContainerVisual : IInspectable
+ {
+ IVisualCollection Children
+ {
+ get;
+ }
+ }
+
+ internal unsafe partial interface IVisualCollection : IInspectable
+ {
+ int Count
+ {
+ get;
+ }
+
+ void InsertAbove(IVisual newChild, IVisual sibling);
+ void InsertAtBottom(IVisual newChild);
+ void InsertAtTop(IVisual newChild);
+ void InsertBelow(IVisual newChild, IVisual sibling);
+ void Remove(IVisual child);
+ void RemoveAll();
+ }
+
+ internal unsafe partial interface ICompositionTarget : IInspectable
+ {
+ IVisual Root
+ {
+ get;
+ }
+
+ void SetRoot(IVisual value);
+ }
+
+ internal unsafe partial interface IGraphicsEffect : IInspectable
+ {
+ IntPtr Name
+ {
+ get;
+ }
+
+ void SetName(IntPtr name);
+ }
+
+ internal unsafe partial interface IGraphicsEffectSource : IInspectable
+ {
+ }
+
+ internal unsafe partial interface IGraphicsEffectD2D1Interop : Avalonia.MicroCom.IUnknown
+ {
+ Guid EffectId
+ {
+ get;
+ }
+
+ void GetNamedPropertyMapping(IntPtr name, uint* index, GRAPHICS_EFFECT_PROPERTY_MAPPING* mapping);
+ uint PropertyCount
+ {
+ get;
+ }
+
+ IPropertyValue GetProperty(uint index);
+ IGraphicsEffectSource GetSource(uint index);
+ uint SourceCount
+ {
+ get;
+ }
+ }
+
+ internal unsafe partial interface ICompositionEffectSourceParameter : IInspectable
+ {
+ IntPtr Name
+ {
+ get;
+ }
+ }
+
+ internal unsafe partial interface ICompositionEffectSourceParameterFactory : IInspectable
+ {
+ ICompositionEffectSourceParameter Create(IntPtr name);
+ }
+
+ internal unsafe partial interface ICompositionEffectFactory : IInspectable
+ {
+ ICompositionEffectBrush CreateBrush();
+ int ExtendedError
+ {
+ get;
+ }
+
+ CompositionEffectFactoryLoadStatus LoadStatus
+ {
+ get;
+ }
+ }
+
+ internal unsafe partial interface ICompositionEffectBrush : IInspectable
+ {
+ ICompositionBrush GetSourceParameter(IntPtr name);
+ void SetSourceParameter(IntPtr name, ICompositionBrush source);
+ }
+
+ internal unsafe partial interface ICompositionBackdropBrush : IInspectable
+ {
+ }
+
+ internal unsafe partial interface ICompositionColorBrush : IInspectable
+ {
+ Avalonia.Win32.WinRT.WinRTColor Color
+ {
+ get;
+ }
+
+ void SetColor(Avalonia.Win32.WinRT.WinRTColor value);
+ }
+}
+
+namespace Avalonia.Win32.WinRT.Impl
+{
+ unsafe internal partial class __MicroComIInspectableProxy : Avalonia.MicroCom.MicroComProxyBase, IInspectable
+ {
+ public void GetIids(ulong* iidCount, Guid** iids)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, iidCount, iids, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetIids failed", __result);
+ }
+
+ public IntPtr RuntimeClassName
+ {
+ get
+ {
+ int __result;
+ IntPtr className = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &className, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetRuntimeClassName failed", __result);
+ return className;
+ }
+ }
+
+ public TrustLevel TrustLevel
+ {
+ get
+ {
+ int __result;
+ TrustLevel trustLevel = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &trustLevel, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetTrustLevel failed", __result);
+ return trustLevel;
+ }
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IInspectable), new Guid("AF86E2E0-B12D-4c6a-9C5A-D7AA65101E90"), (p, owns) => new __MicroComIInspectableProxy(p, owns));
+ }
+
+ public __MicroComIInspectableProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 3;
+ }
+
+ unsafe class __MicroComIInspectableVTable : Avalonia.MicroCom.MicroComVtblBase
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetIidsDelegate(IntPtr @this, ulong* iidCount, Guid** iids);
+ static int GetIids(IntPtr @this, ulong* iidCount, Guid** iids)
+ {
+ IInspectable __target = null;
+ try
+ {
+ {
+ __target = (IInspectable)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.GetIids(iidCount, iids);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetRuntimeClassNameDelegate(IntPtr @this, IntPtr* className);
+ static int GetRuntimeClassName(IntPtr @this, IntPtr* className)
+ {
+ IInspectable __target = null;
+ try
+ {
+ {
+ __target = (IInspectable)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.RuntimeClassName;
+ *className = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetTrustLevelDelegate(IntPtr @this, TrustLevel* trustLevel);
+ static int GetTrustLevel(IntPtr @this, TrustLevel* trustLevel)
+ {
+ IInspectable __target = null;
+ try
+ {
+ {
+ __target = (IInspectable)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.TrustLevel;
+ *trustLevel = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIInspectableVTable()
+ {
+ base.AddMethod((GetIidsDelegate)GetIids);
+ base.AddMethod((GetRuntimeClassNameDelegate)GetRuntimeClassName);
+ base.AddMethod((GetTrustLevelDelegate)GetTrustLevel);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IInspectable), new __MicroComIInspectableVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIPropertyValueProxy : __MicroComIInspectableProxy, IPropertyValue
+ {
+ public PropertyType Type
+ {
+ get
+ {
+ int __result;
+ PropertyType value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetType failed", __result);
+ return value;
+ }
+ }
+
+ public int IsNumericScalar
+ {
+ get
+ {
+ int __result;
+ int value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetIsNumericScalar failed", __result);
+ return value;
+ }
+ }
+
+ public byte UInt8
+ {
+ get
+ {
+ int __result;
+ byte value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetUInt8 failed", __result);
+ return value;
+ }
+ }
+
+ public short Int16
+ {
+ get
+ {
+ int __result;
+ short value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 3]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetInt16 failed", __result);
+ return value;
+ }
+ }
+
+ public ushort UInt16
+ {
+ get
+ {
+ int __result;
+ ushort value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 4]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetUInt16 failed", __result);
+ return value;
+ }
+ }
+
+ public int Int32
+ {
+ get
+ {
+ int __result;
+ int value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 5]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetInt32 failed", __result);
+ return value;
+ }
+ }
+
+ public uint UInt32
+ {
+ get
+ {
+ int __result;
+ uint value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 6]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetUInt32 failed", __result);
+ return value;
+ }
+ }
+
+ public long Int64
+ {
+ get
+ {
+ int __result;
+ long value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 7]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetInt64 failed", __result);
+ return value;
+ }
+ }
+
+ public ulong UInt64
+ {
+ get
+ {
+ int __result;
+ ulong value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 8]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetUInt64 failed", __result);
+ return value;
+ }
+ }
+
+ public float Single
+ {
+ get
+ {
+ int __result;
+ float value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 9]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetSingle failed", __result);
+ return value;
+ }
+ }
+
+ public double Double
+ {
+ get
+ {
+ int __result;
+ double value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 10]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetDouble failed", __result);
+ return value;
+ }
+ }
+
+ public System.Char Char16
+ {
+ get
+ {
+ int __result;
+ System.Char value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 11]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetChar16 failed", __result);
+ return value;
+ }
+ }
+
+ public int Boolean
+ {
+ get
+ {
+ int __result;
+ int value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 12]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetBoolean failed", __result);
+ return value;
+ }
+ }
+
+ public IntPtr String
+ {
+ get
+ {
+ int __result;
+ IntPtr value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 13]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetString failed", __result);
+ return value;
+ }
+ }
+
+ public System.Guid Guid
+ {
+ get
+ {
+ int __result;
+ System.Guid value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 14]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetGuid failed", __result);
+ return value;
+ }
+ }
+
+ public void GetDateTime(void* value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 15]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetDateTime failed", __result);
+ }
+
+ public void GetTimeSpan(void* value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 16]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetTimeSpan failed", __result);
+ }
+
+ public void GetPoint(void* value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 17]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetPoint failed", __result);
+ }
+
+ public void GetSize(void* value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 18]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetSize failed", __result);
+ }
+
+ public void GetRect(void* value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 19]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetRect failed", __result);
+ }
+
+ public byte* GetUInt8Array(uint* __valueSize)
+ {
+ int __result;
+ byte* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 20]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetUInt8Array failed", __result);
+ return value;
+ }
+
+ public short* GetInt16Array(uint* __valueSize)
+ {
+ int __result;
+ short* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 21]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetInt16Array failed", __result);
+ return value;
+ }
+
+ public ushort* GetUInt16Array(uint* __valueSize)
+ {
+ int __result;
+ ushort* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 22]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetUInt16Array failed", __result);
+ return value;
+ }
+
+ public int* GetInt32Array(uint* __valueSize)
+ {
+ int __result;
+ int* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 23]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetInt32Array failed", __result);
+ return value;
+ }
+
+ public uint* GetUInt32Array(uint* __valueSize)
+ {
+ int __result;
+ uint* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 24]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetUInt32Array failed", __result);
+ return value;
+ }
+
+ public long* GetInt64Array(uint* __valueSize)
+ {
+ int __result;
+ long* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 25]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetInt64Array failed", __result);
+ return value;
+ }
+
+ public ulong* GetUInt64Array(uint* __valueSize)
+ {
+ int __result;
+ ulong* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 26]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetUInt64Array failed", __result);
+ return value;
+ }
+
+ public float* GetSingleArray(uint* __valueSize)
+ {
+ int __result;
+ float* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 27]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetSingleArray failed", __result);
+ return value;
+ }
+
+ public double* GetDoubleArray(uint* __valueSize)
+ {
+ int __result;
+ double* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 28]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetDoubleArray failed", __result);
+ return value;
+ }
+
+ public System.Char* GetChar16Array(uint* __valueSize)
+ {
+ int __result;
+ System.Char* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 29]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetChar16Array failed", __result);
+ return value;
+ }
+
+ public int* GetBooleanArray(uint* __valueSize)
+ {
+ int __result;
+ int* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 30]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetBooleanArray failed", __result);
+ return value;
+ }
+
+ public IntPtr* GetStringArray(uint* __valueSize)
+ {
+ int __result;
+ IntPtr* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 31]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetStringArray failed", __result);
+ return value;
+ }
+
+ public void** GetInspectableArray(uint* __valueSize)
+ {
+ int __result;
+ void** value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 32]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetInspectableArray failed", __result);
+ return value;
+ }
+
+ public System.Guid* GetGuidArray(uint* __valueSize)
+ {
+ int __result;
+ System.Guid* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 33]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetGuidArray failed", __result);
+ return value;
+ }
+
+ public void* GetDateTimeArray(uint* __valueSize)
+ {
+ int __result;
+ void* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 34]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetDateTimeArray failed", __result);
+ return value;
+ }
+
+ public void* GetTimeSpanArray(uint* __valueSize)
+ {
+ int __result;
+ void* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 35]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetTimeSpanArray failed", __result);
+ return value;
+ }
+
+ public void* GetPointArray(uint* __valueSize)
+ {
+ int __result;
+ void* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 36]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetPointArray failed", __result);
+ return value;
+ }
+
+ public void* GetSizeArray(uint* __valueSize)
+ {
+ int __result;
+ void* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 37]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetSizeArray failed", __result);
+ return value;
+ }
+
+ public void* GetRectArray(uint* __valueSize)
+ {
+ int __result;
+ void* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, __valueSize, &value, (*PPV)[base.VTableSize + 38]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetRectArray failed", __result);
+ return value;
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IPropertyValue), new Guid("4BD682DD-7554-40E9-9A9B-82654EDE7E62"), (p, owns) => new __MicroComIPropertyValueProxy(p, owns));
+ }
+
+ public __MicroComIPropertyValueProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 39;
+ }
+
+ unsafe class __MicroComIPropertyValueVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetTypeDelegate(IntPtr @this, PropertyType* value);
+ static int GetType(IntPtr @this, PropertyType* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Type;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetIsNumericScalarDelegate(IntPtr @this, int* value);
+ static int GetIsNumericScalar(IntPtr @this, int* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.IsNumericScalar;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetUInt8Delegate(IntPtr @this, byte* value);
+ static int GetUInt8(IntPtr @this, byte* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.UInt8;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetInt16Delegate(IntPtr @this, short* value);
+ static int GetInt16(IntPtr @this, short* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Int16;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetUInt16Delegate(IntPtr @this, ushort* value);
+ static int GetUInt16(IntPtr @this, ushort* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.UInt16;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetInt32Delegate(IntPtr @this, int* value);
+ static int GetInt32(IntPtr @this, int* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Int32;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetUInt32Delegate(IntPtr @this, uint* value);
+ static int GetUInt32(IntPtr @this, uint* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.UInt32;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetInt64Delegate(IntPtr @this, long* value);
+ static int GetInt64(IntPtr @this, long* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Int64;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetUInt64Delegate(IntPtr @this, ulong* value);
+ static int GetUInt64(IntPtr @this, ulong* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.UInt64;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetSingleDelegate(IntPtr @this, float* value);
+ static int GetSingle(IntPtr @this, float* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Single;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetDoubleDelegate(IntPtr @this, double* value);
+ static int GetDouble(IntPtr @this, double* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Double;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetChar16Delegate(IntPtr @this, System.Char* value);
+ static int GetChar16(IntPtr @this, System.Char* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Char16;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetBooleanDelegate(IntPtr @this, int* value);
+ static int GetBoolean(IntPtr @this, int* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Boolean;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetStringDelegate(IntPtr @this, IntPtr* value);
+ static int GetString(IntPtr @this, IntPtr* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.String;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetGuidDelegate(IntPtr @this, System.Guid* value);
+ static int GetGuid(IntPtr @this, System.Guid* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Guid;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetDateTimeDelegate(IntPtr @this, void* value);
+ static int GetDateTime(IntPtr @this, void* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.GetDateTime(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetTimeSpanDelegate(IntPtr @this, void* value);
+ static int GetTimeSpan(IntPtr @this, void* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.GetTimeSpan(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetPointDelegate(IntPtr @this, void* value);
+ static int GetPoint(IntPtr @this, void* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.GetPoint(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetSizeDelegate(IntPtr @this, void* value);
+ static int GetSize(IntPtr @this, void* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.GetSize(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetRectDelegate(IntPtr @this, void* value);
+ static int GetRect(IntPtr @this, void* value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.GetRect(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetUInt8ArrayDelegate(IntPtr @this, uint* __valueSize, byte** value);
+ static int GetUInt8Array(IntPtr @this, uint* __valueSize, byte** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetUInt8Array(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetInt16ArrayDelegate(IntPtr @this, uint* __valueSize, short** value);
+ static int GetInt16Array(IntPtr @this, uint* __valueSize, short** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetInt16Array(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetUInt16ArrayDelegate(IntPtr @this, uint* __valueSize, ushort** value);
+ static int GetUInt16Array(IntPtr @this, uint* __valueSize, ushort** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetUInt16Array(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetInt32ArrayDelegate(IntPtr @this, uint* __valueSize, int** value);
+ static int GetInt32Array(IntPtr @this, uint* __valueSize, int** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetInt32Array(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetUInt32ArrayDelegate(IntPtr @this, uint* __valueSize, uint** value);
+ static int GetUInt32Array(IntPtr @this, uint* __valueSize, uint** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetUInt32Array(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetInt64ArrayDelegate(IntPtr @this, uint* __valueSize, long** value);
+ static int GetInt64Array(IntPtr @this, uint* __valueSize, long** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetInt64Array(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetUInt64ArrayDelegate(IntPtr @this, uint* __valueSize, ulong** value);
+ static int GetUInt64Array(IntPtr @this, uint* __valueSize, ulong** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetUInt64Array(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetSingleArrayDelegate(IntPtr @this, uint* __valueSize, float** value);
+ static int GetSingleArray(IntPtr @this, uint* __valueSize, float** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetSingleArray(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetDoubleArrayDelegate(IntPtr @this, uint* __valueSize, double** value);
+ static int GetDoubleArray(IntPtr @this, uint* __valueSize, double** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetDoubleArray(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetChar16ArrayDelegate(IntPtr @this, uint* __valueSize, System.Char** value);
+ static int GetChar16Array(IntPtr @this, uint* __valueSize, System.Char** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetChar16Array(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetBooleanArrayDelegate(IntPtr @this, uint* __valueSize, int** value);
+ static int GetBooleanArray(IntPtr @this, uint* __valueSize, int** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetBooleanArray(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetStringArrayDelegate(IntPtr @this, uint* __valueSize, IntPtr** value);
+ static int GetStringArray(IntPtr @this, uint* __valueSize, IntPtr** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetStringArray(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetInspectableArrayDelegate(IntPtr @this, uint* __valueSize, void*** value);
+ static int GetInspectableArray(IntPtr @this, uint* __valueSize, void*** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetInspectableArray(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetGuidArrayDelegate(IntPtr @this, uint* __valueSize, System.Guid** value);
+ static int GetGuidArray(IntPtr @this, uint* __valueSize, System.Guid** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetGuidArray(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetDateTimeArrayDelegate(IntPtr @this, uint* __valueSize, void** value);
+ static int GetDateTimeArray(IntPtr @this, uint* __valueSize, void** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetDateTimeArray(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetTimeSpanArrayDelegate(IntPtr @this, uint* __valueSize, void** value);
+ static int GetTimeSpanArray(IntPtr @this, uint* __valueSize, void** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetTimeSpanArray(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetPointArrayDelegate(IntPtr @this, uint* __valueSize, void** value);
+ static int GetPointArray(IntPtr @this, uint* __valueSize, void** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetPointArray(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetSizeArrayDelegate(IntPtr @this, uint* __valueSize, void** value);
+ static int GetSizeArray(IntPtr @this, uint* __valueSize, void** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetSizeArray(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetRectArrayDelegate(IntPtr @this, uint* __valueSize, void** value);
+ static int GetRectArray(IntPtr @this, uint* __valueSize, void** value)
+ {
+ IPropertyValue __target = null;
+ try
+ {
+ {
+ __target = (IPropertyValue)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetRectArray(__valueSize);
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIPropertyValueVTable()
+ {
+ base.AddMethod((GetTypeDelegate)GetType);
+ base.AddMethod((GetIsNumericScalarDelegate)GetIsNumericScalar);
+ base.AddMethod((GetUInt8Delegate)GetUInt8);
+ base.AddMethod((GetInt16Delegate)GetInt16);
+ base.AddMethod((GetUInt16Delegate)GetUInt16);
+ base.AddMethod((GetInt32Delegate)GetInt32);
+ base.AddMethod((GetUInt32Delegate)GetUInt32);
+ base.AddMethod((GetInt64Delegate)GetInt64);
+ base.AddMethod((GetUInt64Delegate)GetUInt64);
+ base.AddMethod((GetSingleDelegate)GetSingle);
+ base.AddMethod((GetDoubleDelegate)GetDouble);
+ base.AddMethod((GetChar16Delegate)GetChar16);
+ base.AddMethod((GetBooleanDelegate)GetBoolean);
+ base.AddMethod((GetStringDelegate)GetString);
+ base.AddMethod((GetGuidDelegate)GetGuid);
+ base.AddMethod((GetDateTimeDelegate)GetDateTime);
+ base.AddMethod((GetTimeSpanDelegate)GetTimeSpan);
+ base.AddMethod((GetPointDelegate)GetPoint);
+ base.AddMethod((GetSizeDelegate)GetSize);
+ base.AddMethod((GetRectDelegate)GetRect);
+ base.AddMethod((GetUInt8ArrayDelegate)GetUInt8Array);
+ base.AddMethod((GetInt16ArrayDelegate)GetInt16Array);
+ base.AddMethod((GetUInt16ArrayDelegate)GetUInt16Array);
+ base.AddMethod((GetInt32ArrayDelegate)GetInt32Array);
+ base.AddMethod((GetUInt32ArrayDelegate)GetUInt32Array);
+ base.AddMethod((GetInt64ArrayDelegate)GetInt64Array);
+ base.AddMethod((GetUInt64ArrayDelegate)GetUInt64Array);
+ base.AddMethod((GetSingleArrayDelegate)GetSingleArray);
+ base.AddMethod((GetDoubleArrayDelegate)GetDoubleArray);
+ base.AddMethod((GetChar16ArrayDelegate)GetChar16Array);
+ base.AddMethod((GetBooleanArrayDelegate)GetBooleanArray);
+ base.AddMethod((GetStringArrayDelegate)GetStringArray);
+ base.AddMethod((GetInspectableArrayDelegate)GetInspectableArray);
+ base.AddMethod((GetGuidArrayDelegate)GetGuidArray);
+ base.AddMethod((GetDateTimeArrayDelegate)GetDateTimeArray);
+ base.AddMethod((GetTimeSpanArrayDelegate)GetTimeSpanArray);
+ base.AddMethod((GetPointArrayDelegate)GetPointArray);
+ base.AddMethod((GetSizeArrayDelegate)GetSizeArray);
+ base.AddMethod((GetRectArrayDelegate)GetRectArray);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IPropertyValue), new __MicroComIPropertyValueVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIAsyncActionCompletedHandlerProxy : Avalonia.MicroCom.MicroComProxyBase, IAsyncActionCompletedHandler
+ {
+ public void Invoke(IAsyncAction asyncInfo, AsyncStatus asyncStatus)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(asyncInfo), asyncStatus, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("Invoke failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IAsyncActionCompletedHandler), new Guid("A4ED5C81-76C9-40BD-8BE6-B1D90FB20AE7"), (p, owns) => new __MicroComIAsyncActionCompletedHandlerProxy(p, owns));
+ }
+
+ public __MicroComIAsyncActionCompletedHandlerProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 1;
+ }
+
+ unsafe class __MicroComIAsyncActionCompletedHandlerVTable : Avalonia.MicroCom.MicroComVtblBase
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int InvokeDelegate(IntPtr @this, void* asyncInfo, AsyncStatus asyncStatus);
+ static int Invoke(IntPtr @this, void* asyncInfo, AsyncStatus asyncStatus)
+ {
+ IAsyncActionCompletedHandler __target = null;
+ try
+ {
+ {
+ __target = (IAsyncActionCompletedHandler)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.Invoke(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(asyncInfo, false), asyncStatus);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIAsyncActionCompletedHandlerVTable()
+ {
+ base.AddMethod((InvokeDelegate)Invoke);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IAsyncActionCompletedHandler), new __MicroComIAsyncActionCompletedHandlerVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIAsyncActionProxy : __MicroComIInspectableProxy, IAsyncAction
+ {
+ public void SetCompleted(IAsyncActionCompletedHandler handler)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(handler), (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetCompleted failed", __result);
+ }
+
+ public IAsyncActionCompletedHandler Completed
+ {
+ get
+ {
+ int __result;
+ void* __marshal_ppv = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_ppv, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetCompleted failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_ppv, true);
+ }
+ }
+
+ public void GetResults()
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetResults failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IAsyncAction), new Guid("5A648006-843A-4DA9-865B-9D26E5DFAD7B"), (p, owns) => new __MicroComIAsyncActionProxy(p, owns));
+ }
+
+ public __MicroComIAsyncActionProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 3;
+ }
+
+ unsafe class __MicroComIAsyncActionVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetCompletedDelegate(IntPtr @this, void* handler);
+ static int SetCompleted(IntPtr @this, void* handler)
+ {
+ IAsyncAction __target = null;
+ try
+ {
+ {
+ __target = (IAsyncAction)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetCompleted(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(handler, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetCompletedDelegate(IntPtr @this, void** ppv);
+ static int GetCompleted(IntPtr @this, void** ppv)
+ {
+ IAsyncAction __target = null;
+ try
+ {
+ {
+ __target = (IAsyncAction)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Completed;
+ *ppv = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetResultsDelegate(IntPtr @this);
+ static int GetResults(IntPtr @this)
+ {
+ IAsyncAction __target = null;
+ try
+ {
+ {
+ __target = (IAsyncAction)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.GetResults();
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIAsyncActionVTable()
+ {
+ base.AddMethod((SetCompletedDelegate)SetCompleted);
+ base.AddMethod((GetCompletedDelegate)GetCompleted);
+ base.AddMethod((GetResultsDelegate)GetResults);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IAsyncAction), new __MicroComIAsyncActionVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIDispatcherQueueProxy : __MicroComIInspectableProxy, IDispatcherQueue
+ {
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IDispatcherQueue), new Guid("603E88E4-A338-4FFE-A457-A5CFB9CEB899"), (p, owns) => new __MicroComIDispatcherQueueProxy(p, owns));
+ }
+
+ public __MicroComIDispatcherQueueProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 0;
+ }
+
+ unsafe class __MicroComIDispatcherQueueVTable : __MicroComIInspectableVTable
+ {
+ public __MicroComIDispatcherQueueVTable()
+ {
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IDispatcherQueue), new __MicroComIDispatcherQueueVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIDispatcherQueueControllerProxy : __MicroComIInspectableProxy, IDispatcherQueueController
+ {
+ public IDispatcherQueue DispatcherQueue
+ {
+ get
+ {
+ int __result;
+ void* __marshal_value = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetDispatcherQueue failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_value, true);
+ }
+ }
+
+ public IAsyncAction ShutdownQueueAsync()
+ {
+ int __result;
+ void* __marshal_operation = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_operation, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("ShutdownQueueAsync failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_operation, true);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IDispatcherQueueController), new Guid("22F34E66-50DB-4E36-A98D-61C01B384D20"), (p, owns) => new __MicroComIDispatcherQueueControllerProxy(p, owns));
+ }
+
+ public __MicroComIDispatcherQueueControllerProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 2;
+ }
+
+ unsafe class __MicroComIDispatcherQueueControllerVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetDispatcherQueueDelegate(IntPtr @this, void** value);
+ static int GetDispatcherQueue(IntPtr @this, void** value)
+ {
+ IDispatcherQueueController __target = null;
+ try
+ {
+ {
+ __target = (IDispatcherQueueController)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.DispatcherQueue;
+ *value = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int ShutdownQueueAsyncDelegate(IntPtr @this, void** operation);
+ static int ShutdownQueueAsync(IntPtr @this, void** operation)
+ {
+ IDispatcherQueueController __target = null;
+ try
+ {
+ {
+ __target = (IDispatcherQueueController)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.ShutdownQueueAsync();
+ *operation = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIDispatcherQueueControllerVTable()
+ {
+ base.AddMethod((GetDispatcherQueueDelegate)GetDispatcherQueue);
+ base.AddMethod((ShutdownQueueAsyncDelegate)ShutdownQueueAsync);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IDispatcherQueueController), new __MicroComIDispatcherQueueControllerVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIActivationFactoryProxy : __MicroComIInspectableProxy, IActivationFactory
+ {
+ public IntPtr ActivateInstance()
+ {
+ int __result;
+ IntPtr instance = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &instance, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("ActivateInstance failed", __result);
+ return instance;
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IActivationFactory), new Guid("00000035-0000-0000-C000-000000000046"), (p, owns) => new __MicroComIActivationFactoryProxy(p, owns));
+ }
+
+ public __MicroComIActivationFactoryProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 1;
+ }
+
+ unsafe class __MicroComIActivationFactoryVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int ActivateInstanceDelegate(IntPtr @this, IntPtr* instance);
+ static int ActivateInstance(IntPtr @this, IntPtr* instance)
+ {
+ IActivationFactory __target = null;
+ try
+ {
+ {
+ __target = (IActivationFactory)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.ActivateInstance();
+ *instance = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIActivationFactoryVTable()
+ {
+ base.AddMethod((ActivateInstanceDelegate)ActivateInstance);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IActivationFactory), new __MicroComIActivationFactoryVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositorProxy : __MicroComIInspectableProxy, ICompositor
+ {
+ public void* CreateColorKeyFrameAnimation()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateColorKeyFrameAnimation failed", __result);
+ return result;
+ }
+
+ public void* CreateColorBrush()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateColorBrush failed", __result);
+ return result;
+ }
+
+ public ICompositionColorBrush CreateColorBrushWithColor(Avalonia.Win32.WinRT.WinRTColor* color)
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, color, &__marshal_result, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateColorBrushWithColor failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public IContainerVisual CreateContainerVisual()
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_result, (*PPV)[base.VTableSize + 3]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateContainerVisual failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public void* CreateCubicBezierEasingFunction(System.Numerics.Vector2 controlPoint1, System.Numerics.Vector2 controlPoint2)
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, controlPoint1, controlPoint2, &result, (*PPV)[base.VTableSize + 4]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateCubicBezierEasingFunction failed", __result);
+ return result;
+ }
+
+ public ICompositionEffectFactory CreateEffectFactory(IGraphicsEffect graphicsEffect)
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(graphicsEffect), &__marshal_result, (*PPV)[base.VTableSize + 5]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateEffectFactory failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public void* CreateEffectFactoryWithProperties(void* graphicsEffect, void* animatableProperties)
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, graphicsEffect, animatableProperties, &result, (*PPV)[base.VTableSize + 6]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateEffectFactoryWithProperties failed", __result);
+ return result;
+ }
+
+ public void* CreateExpressionAnimation()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 7]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateExpressionAnimation failed", __result);
+ return result;
+ }
+
+ public void* CreateExpressionAnimationWithExpression(IntPtr expression)
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, expression, &result, (*PPV)[base.VTableSize + 8]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateExpressionAnimationWithExpression failed", __result);
+ return result;
+ }
+
+ public void* CreateInsetClip()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 9]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateInsetClip failed", __result);
+ return result;
+ }
+
+ public void* CreateInsetClipWithInsets(float leftInset, float topInset, float rightInset, float bottomInset)
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, leftInset, topInset, rightInset, bottomInset, &result, (*PPV)[base.VTableSize + 10]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateInsetClipWithInsets failed", __result);
+ return result;
+ }
+
+ public void* CreateLinearEasingFunction()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 11]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateLinearEasingFunction failed", __result);
+ return result;
+ }
+
+ public void* CreatePropertySet()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 12]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreatePropertySet failed", __result);
+ return result;
+ }
+
+ public void* CreateQuaternionKeyFrameAnimation()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 13]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateQuaternionKeyFrameAnimation failed", __result);
+ return result;
+ }
+
+ public void* CreateScalarKeyFrameAnimation()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 14]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateScalarKeyFrameAnimation failed", __result);
+ return result;
+ }
+
+ public void* CreateScopedBatch(CompositionBatchTypes batchType)
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, batchType, &result, (*PPV)[base.VTableSize + 15]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateScopedBatch failed", __result);
+ return result;
+ }
+
+ public ISpriteVisual CreateSpriteVisual()
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_result, (*PPV)[base.VTableSize + 16]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateSpriteVisual failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public ICompositionSurfaceBrush CreateSurfaceBrush()
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_result, (*PPV)[base.VTableSize + 17]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateSurfaceBrush failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public ICompositionSurfaceBrush CreateSurfaceBrushWithSurface(ICompositionSurface surface)
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(surface), &__marshal_result, (*PPV)[base.VTableSize + 18]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateSurfaceBrushWithSurface failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public void* CreateTargetForCurrentView()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 19]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateTargetForCurrentView failed", __result);
+ return result;
+ }
+
+ public void* CreateVector2KeyFrameAnimation()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 20]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateVector2KeyFrameAnimation failed", __result);
+ return result;
+ }
+
+ public void* CreateVector3KeyFrameAnimation()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 21]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateVector3KeyFrameAnimation failed", __result);
+ return result;
+ }
+
+ public void* CreateVector4KeyFrameAnimation()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 22]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateVector4KeyFrameAnimation failed", __result);
+ return result;
+ }
+
+ public void* GetCommitBatch(CompositionBatchTypes batchType)
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, batchType, &result, (*PPV)[base.VTableSize + 23]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetCommitBatch failed", __result);
+ return result;
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositor), new Guid("B403CA50-7F8C-4E83-985F-CC45060036D8"), (p, owns) => new __MicroComICompositorProxy(p, owns));
+ }
+
+ public __MicroComICompositorProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 24;
+ }
+
+ unsafe class __MicroComICompositorVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateColorKeyFrameAnimationDelegate(IntPtr @this, void** result);
+ static int CreateColorKeyFrameAnimation(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateColorKeyFrameAnimation();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateColorBrushDelegate(IntPtr @this, void** result);
+ static int CreateColorBrush(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateColorBrush();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateColorBrushWithColorDelegate(IntPtr @this, Avalonia.Win32.WinRT.WinRTColor* color, void** result);
+ static int CreateColorBrushWithColor(IntPtr @this, Avalonia.Win32.WinRT.WinRTColor* color, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateColorBrushWithColor(color);
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateContainerVisualDelegate(IntPtr @this, void** result);
+ static int CreateContainerVisual(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateContainerVisual();
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateCubicBezierEasingFunctionDelegate(IntPtr @this, System.Numerics.Vector2 controlPoint1, System.Numerics.Vector2 controlPoint2, void** result);
+ static int CreateCubicBezierEasingFunction(IntPtr @this, System.Numerics.Vector2 controlPoint1, System.Numerics.Vector2 controlPoint2, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateCubicBezierEasingFunction(controlPoint1, controlPoint2);
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateEffectFactoryDelegate(IntPtr @this, void* graphicsEffect, void** result);
+ static int CreateEffectFactory(IntPtr @this, void* graphicsEffect, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateEffectFactory(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(graphicsEffect, false));
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateEffectFactoryWithPropertiesDelegate(IntPtr @this, void* graphicsEffect, void* animatableProperties, void** result);
+ static int CreateEffectFactoryWithProperties(IntPtr @this, void* graphicsEffect, void* animatableProperties, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateEffectFactoryWithProperties(graphicsEffect, animatableProperties);
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateExpressionAnimationDelegate(IntPtr @this, void** result);
+ static int CreateExpressionAnimation(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateExpressionAnimation();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateExpressionAnimationWithExpressionDelegate(IntPtr @this, IntPtr expression, void** result);
+ static int CreateExpressionAnimationWithExpression(IntPtr @this, IntPtr expression, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateExpressionAnimationWithExpression(expression);
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateInsetClipDelegate(IntPtr @this, void** result);
+ static int CreateInsetClip(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateInsetClip();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateInsetClipWithInsetsDelegate(IntPtr @this, float leftInset, float topInset, float rightInset, float bottomInset, void** result);
+ static int CreateInsetClipWithInsets(IntPtr @this, float leftInset, float topInset, float rightInset, float bottomInset, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateInsetClipWithInsets(leftInset, topInset, rightInset, bottomInset);
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateLinearEasingFunctionDelegate(IntPtr @this, void** result);
+ static int CreateLinearEasingFunction(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateLinearEasingFunction();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreatePropertySetDelegate(IntPtr @this, void** result);
+ static int CreatePropertySet(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreatePropertySet();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateQuaternionKeyFrameAnimationDelegate(IntPtr @this, void** result);
+ static int CreateQuaternionKeyFrameAnimation(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateQuaternionKeyFrameAnimation();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateScalarKeyFrameAnimationDelegate(IntPtr @this, void** result);
+ static int CreateScalarKeyFrameAnimation(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateScalarKeyFrameAnimation();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateScopedBatchDelegate(IntPtr @this, CompositionBatchTypes batchType, void** result);
+ static int CreateScopedBatch(IntPtr @this, CompositionBatchTypes batchType, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateScopedBatch(batchType);
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateSpriteVisualDelegate(IntPtr @this, void** result);
+ static int CreateSpriteVisual(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateSpriteVisual();
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateSurfaceBrushDelegate(IntPtr @this, void** result);
+ static int CreateSurfaceBrush(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateSurfaceBrush();
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateSurfaceBrushWithSurfaceDelegate(IntPtr @this, void* surface, void** result);
+ static int CreateSurfaceBrushWithSurface(IntPtr @this, void* surface, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateSurfaceBrushWithSurface(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(surface, false));
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateTargetForCurrentViewDelegate(IntPtr @this, void** result);
+ static int CreateTargetForCurrentView(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateTargetForCurrentView();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateVector2KeyFrameAnimationDelegate(IntPtr @this, void** result);
+ static int CreateVector2KeyFrameAnimation(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateVector2KeyFrameAnimation();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateVector3KeyFrameAnimationDelegate(IntPtr @this, void** result);
+ static int CreateVector3KeyFrameAnimation(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateVector3KeyFrameAnimation();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateVector4KeyFrameAnimationDelegate(IntPtr @this, void** result);
+ static int CreateVector4KeyFrameAnimation(IntPtr @this, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateVector4KeyFrameAnimation();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetCommitBatchDelegate(IntPtr @this, CompositionBatchTypes batchType, void** result);
+ static int GetCommitBatch(IntPtr @this, CompositionBatchTypes batchType, void** result)
+ {
+ ICompositor __target = null;
+ try
+ {
+ {
+ __target = (ICompositor)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetCommitBatch(batchType);
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositorVTable()
+ {
+ base.AddMethod((CreateColorKeyFrameAnimationDelegate)CreateColorKeyFrameAnimation);
+ base.AddMethod((CreateColorBrushDelegate)CreateColorBrush);
+ base.AddMethod((CreateColorBrushWithColorDelegate)CreateColorBrushWithColor);
+ base.AddMethod((CreateContainerVisualDelegate)CreateContainerVisual);
+ base.AddMethod((CreateCubicBezierEasingFunctionDelegate)CreateCubicBezierEasingFunction);
+ base.AddMethod((CreateEffectFactoryDelegate)CreateEffectFactory);
+ base.AddMethod((CreateEffectFactoryWithPropertiesDelegate)CreateEffectFactoryWithProperties);
+ base.AddMethod((CreateExpressionAnimationDelegate)CreateExpressionAnimation);
+ base.AddMethod((CreateExpressionAnimationWithExpressionDelegate)CreateExpressionAnimationWithExpression);
+ base.AddMethod((CreateInsetClipDelegate)CreateInsetClip);
+ base.AddMethod((CreateInsetClipWithInsetsDelegate)CreateInsetClipWithInsets);
+ base.AddMethod((CreateLinearEasingFunctionDelegate)CreateLinearEasingFunction);
+ base.AddMethod((CreatePropertySetDelegate)CreatePropertySet);
+ base.AddMethod((CreateQuaternionKeyFrameAnimationDelegate)CreateQuaternionKeyFrameAnimation);
+ base.AddMethod((CreateScalarKeyFrameAnimationDelegate)CreateScalarKeyFrameAnimation);
+ base.AddMethod((CreateScopedBatchDelegate)CreateScopedBatch);
+ base.AddMethod((CreateSpriteVisualDelegate)CreateSpriteVisual);
+ base.AddMethod((CreateSurfaceBrushDelegate)CreateSurfaceBrush);
+ base.AddMethod((CreateSurfaceBrushWithSurfaceDelegate)CreateSurfaceBrushWithSurface);
+ base.AddMethod((CreateTargetForCurrentViewDelegate)CreateTargetForCurrentView);
+ base.AddMethod((CreateVector2KeyFrameAnimationDelegate)CreateVector2KeyFrameAnimation);
+ base.AddMethod((CreateVector3KeyFrameAnimationDelegate)CreateVector3KeyFrameAnimation);
+ base.AddMethod((CreateVector4KeyFrameAnimationDelegate)CreateVector4KeyFrameAnimation);
+ base.AddMethod((GetCommitBatchDelegate)GetCommitBatch);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositor), new __MicroComICompositorVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositor2Proxy : __MicroComIInspectableProxy, ICompositor2
+ {
+ public void* CreateAmbientLight()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateAmbientLight failed", __result);
+ return result;
+ }
+
+ public void* CreateAnimationGroup()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateAnimationGroup failed", __result);
+ return result;
+ }
+
+ public ICompositionBackdropBrush CreateBackdropBrush()
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_result, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateBackdropBrush failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public void* CreateDistantLight()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 3]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateDistantLight failed", __result);
+ return result;
+ }
+
+ public void* CreateDropShadow()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 4]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateDropShadow failed", __result);
+ return result;
+ }
+
+ public void* CreateImplicitAnimationCollection()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 5]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateImplicitAnimationCollection failed", __result);
+ return result;
+ }
+
+ public void* CreateLayerVisual()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 6]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateLayerVisual failed", __result);
+ return result;
+ }
+
+ public void* CreateMaskBrush()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 7]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateMaskBrush failed", __result);
+ return result;
+ }
+
+ public void* CreateNineGridBrush()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 8]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateNineGridBrush failed", __result);
+ return result;
+ }
+
+ public void* CreatePointLight()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 9]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreatePointLight failed", __result);
+ return result;
+ }
+
+ public void* CreateSpotLight()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 10]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateSpotLight failed", __result);
+ return result;
+ }
+
+ public void* CreateStepEasingFunction()
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &result, (*PPV)[base.VTableSize + 11]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateStepEasingFunction failed", __result);
+ return result;
+ }
+
+ public void* CreateStepEasingFunctionWithStepCount(int stepCount)
+ {
+ int __result;
+ void* result = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, stepCount, &result, (*PPV)[base.VTableSize + 12]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateStepEasingFunctionWithStepCount failed", __result);
+ return result;
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositor2), new Guid("735081DC-5E24-45DA-A38F-E32CC349A9A0"), (p, owns) => new __MicroComICompositor2Proxy(p, owns));
+ }
+
+ public __MicroComICompositor2Proxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 13;
+ }
+
+ unsafe class __MicroComICompositor2VTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateAmbientLightDelegate(IntPtr @this, void** result);
+ static int CreateAmbientLight(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateAmbientLight();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateAnimationGroupDelegate(IntPtr @this, void** result);
+ static int CreateAnimationGroup(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateAnimationGroup();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateBackdropBrushDelegate(IntPtr @this, void** result);
+ static int CreateBackdropBrush(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateBackdropBrush();
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateDistantLightDelegate(IntPtr @this, void** result);
+ static int CreateDistantLight(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateDistantLight();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateDropShadowDelegate(IntPtr @this, void** result);
+ static int CreateDropShadow(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateDropShadow();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateImplicitAnimationCollectionDelegate(IntPtr @this, void** result);
+ static int CreateImplicitAnimationCollection(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateImplicitAnimationCollection();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateLayerVisualDelegate(IntPtr @this, void** result);
+ static int CreateLayerVisual(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateLayerVisual();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateMaskBrushDelegate(IntPtr @this, void** result);
+ static int CreateMaskBrush(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateMaskBrush();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateNineGridBrushDelegate(IntPtr @this, void** result);
+ static int CreateNineGridBrush(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateNineGridBrush();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreatePointLightDelegate(IntPtr @this, void** result);
+ static int CreatePointLight(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreatePointLight();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateSpotLightDelegate(IntPtr @this, void** result);
+ static int CreateSpotLight(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateSpotLight();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateStepEasingFunctionDelegate(IntPtr @this, void** result);
+ static int CreateStepEasingFunction(IntPtr @this, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateStepEasingFunction();
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateStepEasingFunctionWithStepCountDelegate(IntPtr @this, int stepCount, void** result);
+ static int CreateStepEasingFunctionWithStepCount(IntPtr @this, int stepCount, void** result)
+ {
+ ICompositor2 __target = null;
+ try
+ {
+ {
+ __target = (ICompositor2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateStepEasingFunctionWithStepCount(stepCount);
+ *result = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositor2VTable()
+ {
+ base.AddMethod((CreateAmbientLightDelegate)CreateAmbientLight);
+ base.AddMethod((CreateAnimationGroupDelegate)CreateAnimationGroup);
+ base.AddMethod((CreateBackdropBrushDelegate)CreateBackdropBrush);
+ base.AddMethod((CreateDistantLightDelegate)CreateDistantLight);
+ base.AddMethod((CreateDropShadowDelegate)CreateDropShadow);
+ base.AddMethod((CreateImplicitAnimationCollectionDelegate)CreateImplicitAnimationCollection);
+ base.AddMethod((CreateLayerVisualDelegate)CreateLayerVisual);
+ base.AddMethod((CreateMaskBrushDelegate)CreateMaskBrush);
+ base.AddMethod((CreateNineGridBrushDelegate)CreateNineGridBrush);
+ base.AddMethod((CreatePointLightDelegate)CreatePointLight);
+ base.AddMethod((CreateSpotLightDelegate)CreateSpotLight);
+ base.AddMethod((CreateStepEasingFunctionDelegate)CreateStepEasingFunction);
+ base.AddMethod((CreateStepEasingFunctionWithStepCountDelegate)CreateStepEasingFunctionWithStepCount);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositor2), new __MicroComICompositor2VTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComISpriteVisualProxy : __MicroComIInspectableProxy, ISpriteVisual
+ {
+ public ICompositionBrush Brush
+ {
+ get
+ {
+ int __result;
+ void* __marshal_value = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetBrush failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_value, true);
+ }
+ }
+
+ public void SetBrush(ICompositionBrush value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(value), (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetBrush failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ISpriteVisual), new Guid("08E05581-1AD1-4F97-9757-402D76E4233B"), (p, owns) => new __MicroComISpriteVisualProxy(p, owns));
+ }
+
+ public __MicroComISpriteVisualProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 2;
+ }
+
+ unsafe class __MicroComISpriteVisualVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetBrushDelegate(IntPtr @this, void** value);
+ static int GetBrush(IntPtr @this, void** value)
+ {
+ ISpriteVisual __target = null;
+ try
+ {
+ {
+ __target = (ISpriteVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Brush;
+ *value = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetBrushDelegate(IntPtr @this, void* value);
+ static int SetBrush(IntPtr @this, void* value)
+ {
+ ISpriteVisual __target = null;
+ try
+ {
+ {
+ __target = (ISpriteVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetBrush(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(value, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComISpriteVisualVTable()
+ {
+ base.AddMethod((GetBrushDelegate)GetBrush);
+ base.AddMethod((SetBrushDelegate)SetBrush);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ISpriteVisual), new __MicroComISpriteVisualVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionDrawingSurfaceInteropProxy : Avalonia.MicroCom.MicroComProxyBase, ICompositionDrawingSurfaceInterop
+ {
+ public Avalonia.Win32.Interop.UnmanagedMethods.POINT BeginDraw(Avalonia.Win32.Interop.UnmanagedMethods.RECT* updateRect, Guid* iid, void** updateObject)
+ {
+ int __result;
+ Avalonia.Win32.Interop.UnmanagedMethods.POINT updateOffset = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, updateRect, iid, updateObject, &updateOffset, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("BeginDraw failed", __result);
+ return updateOffset;
+ }
+
+ public void EndDraw()
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("EndDraw failed", __result);
+ }
+
+ public void Resize(Avalonia.Win32.Interop.UnmanagedMethods.POINT sizePixels)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, sizePixels, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("Resize failed", __result);
+ }
+
+ public void Scroll(Avalonia.Win32.Interop.UnmanagedMethods.RECT* scrollRect, Avalonia.Win32.Interop.UnmanagedMethods.RECT* clipRect, int offsetX, int offsetY)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, scrollRect, clipRect, offsetX, offsetY, (*PPV)[base.VTableSize + 3]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("Scroll failed", __result);
+ }
+
+ public void ResumeDraw()
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, (*PPV)[base.VTableSize + 4]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("ResumeDraw failed", __result);
+ }
+
+ public void SuspendDraw()
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, (*PPV)[base.VTableSize + 5]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SuspendDraw failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionDrawingSurfaceInterop), new Guid("FD04E6E3-FE0C-4C3C-AB19-A07601A576EE"), (p, owns) => new __MicroComICompositionDrawingSurfaceInteropProxy(p, owns));
+ }
+
+ public __MicroComICompositionDrawingSurfaceInteropProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 6;
+ }
+
+ unsafe class __MicroComICompositionDrawingSurfaceInteropVTable : Avalonia.MicroCom.MicroComVtblBase
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int BeginDrawDelegate(IntPtr @this, Avalonia.Win32.Interop.UnmanagedMethods.RECT* updateRect, Guid* iid, void** updateObject, Avalonia.Win32.Interop.UnmanagedMethods.POINT* updateOffset);
+ static int BeginDraw(IntPtr @this, Avalonia.Win32.Interop.UnmanagedMethods.RECT* updateRect, Guid* iid, void** updateObject, Avalonia.Win32.Interop.UnmanagedMethods.POINT* updateOffset)
+ {
+ ICompositionDrawingSurfaceInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositionDrawingSurfaceInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.BeginDraw(updateRect, iid, updateObject);
+ *updateOffset = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int EndDrawDelegate(IntPtr @this);
+ static int EndDraw(IntPtr @this)
+ {
+ ICompositionDrawingSurfaceInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositionDrawingSurfaceInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.EndDraw();
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int ResizeDelegate(IntPtr @this, Avalonia.Win32.Interop.UnmanagedMethods.POINT sizePixels);
+ static int Resize(IntPtr @this, Avalonia.Win32.Interop.UnmanagedMethods.POINT sizePixels)
+ {
+ ICompositionDrawingSurfaceInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositionDrawingSurfaceInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.Resize(sizePixels);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int ScrollDelegate(IntPtr @this, Avalonia.Win32.Interop.UnmanagedMethods.RECT* scrollRect, Avalonia.Win32.Interop.UnmanagedMethods.RECT* clipRect, int offsetX, int offsetY);
+ static int Scroll(IntPtr @this, Avalonia.Win32.Interop.UnmanagedMethods.RECT* scrollRect, Avalonia.Win32.Interop.UnmanagedMethods.RECT* clipRect, int offsetX, int offsetY)
+ {
+ ICompositionDrawingSurfaceInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositionDrawingSurfaceInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.Scroll(scrollRect, clipRect, offsetX, offsetY);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int ResumeDrawDelegate(IntPtr @this);
+ static int ResumeDraw(IntPtr @this)
+ {
+ ICompositionDrawingSurfaceInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositionDrawingSurfaceInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.ResumeDraw();
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SuspendDrawDelegate(IntPtr @this);
+ static int SuspendDraw(IntPtr @this)
+ {
+ ICompositionDrawingSurfaceInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositionDrawingSurfaceInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SuspendDraw();
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositionDrawingSurfaceInteropVTable()
+ {
+ base.AddMethod((BeginDrawDelegate)BeginDraw);
+ base.AddMethod((EndDrawDelegate)EndDraw);
+ base.AddMethod((ResizeDelegate)Resize);
+ base.AddMethod((ScrollDelegate)Scroll);
+ base.AddMethod((ResumeDrawDelegate)ResumeDraw);
+ base.AddMethod((SuspendDrawDelegate)SuspendDraw);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionDrawingSurfaceInterop), new __MicroComICompositionDrawingSurfaceInteropVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionGraphicsDeviceInteropProxy : Avalonia.MicroCom.MicroComProxyBase, ICompositionGraphicsDeviceInterop
+ {
+ public IUnknown RenderingDevice
+ {
+ get
+ {
+ int __result;
+ void* __marshal_value = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetRenderingDevice failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_value, true);
+ }
+ }
+
+ public void SetRenderingDevice(IUnknown value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(value), (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetRenderingDevice failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionGraphicsDeviceInterop), new Guid("A116FF71-F8BF-4C8A-9C98-70779A32A9C8"), (p, owns) => new __MicroComICompositionGraphicsDeviceInteropProxy(p, owns));
+ }
+
+ public __MicroComICompositionGraphicsDeviceInteropProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 2;
+ }
+
+ unsafe class __MicroComICompositionGraphicsDeviceInteropVTable : Avalonia.MicroCom.MicroComVtblBase
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetRenderingDeviceDelegate(IntPtr @this, void** value);
+ static int GetRenderingDevice(IntPtr @this, void** value)
+ {
+ ICompositionGraphicsDeviceInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositionGraphicsDeviceInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.RenderingDevice;
+ *value = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetRenderingDeviceDelegate(IntPtr @this, void* value);
+ static int SetRenderingDevice(IntPtr @this, void* value)
+ {
+ ICompositionGraphicsDeviceInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositionGraphicsDeviceInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetRenderingDevice(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(value, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositionGraphicsDeviceInteropVTable()
+ {
+ base.AddMethod((GetRenderingDeviceDelegate)GetRenderingDevice);
+ base.AddMethod((SetRenderingDeviceDelegate)SetRenderingDevice);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionGraphicsDeviceInterop), new __MicroComICompositionGraphicsDeviceInteropVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositorInteropProxy : Avalonia.MicroCom.MicroComProxyBase, ICompositorInterop
+ {
+ public ICompositionSurface CreateCompositionSurfaceForHandle(IntPtr swapChain)
+ {
+ int __result;
+ void* __marshal_res = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, swapChain, &__marshal_res, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateCompositionSurfaceForHandle failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_res, true);
+ }
+
+ public ICompositionSurface CreateCompositionSurfaceForSwapChain(IUnknown swapChain)
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(swapChain), &__marshal_result, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateCompositionSurfaceForSwapChain failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public ICompositionGraphicsDevice CreateGraphicsDevice(IUnknown renderingDevice)
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(renderingDevice), &__marshal_result, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateGraphicsDevice failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositorInterop), new Guid("25297D5C-3AD4-4C9C-B5CF-E36A38512330"), (p, owns) => new __MicroComICompositorInteropProxy(p, owns));
+ }
+
+ public __MicroComICompositorInteropProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 3;
+ }
+
+ unsafe class __MicroComICompositorInteropVTable : Avalonia.MicroCom.MicroComVtblBase
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateCompositionSurfaceForHandleDelegate(IntPtr @this, IntPtr swapChain, void** res);
+ static int CreateCompositionSurfaceForHandle(IntPtr @this, IntPtr swapChain, void** res)
+ {
+ ICompositorInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositorInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateCompositionSurfaceForHandle(swapChain);
+ *res = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateCompositionSurfaceForSwapChainDelegate(IntPtr @this, void* swapChain, void** result);
+ static int CreateCompositionSurfaceForSwapChain(IntPtr @this, void* swapChain, void** result)
+ {
+ ICompositorInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositorInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateCompositionSurfaceForSwapChain(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(swapChain, false));
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateGraphicsDeviceDelegate(IntPtr @this, void* renderingDevice, void** result);
+ static int CreateGraphicsDevice(IntPtr @this, void* renderingDevice, void** result)
+ {
+ ICompositorInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositorInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateGraphicsDevice(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(renderingDevice, false));
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositorInteropVTable()
+ {
+ base.AddMethod((CreateCompositionSurfaceForHandleDelegate)CreateCompositionSurfaceForHandle);
+ base.AddMethod((CreateCompositionSurfaceForSwapChainDelegate)CreateCompositionSurfaceForSwapChain);
+ base.AddMethod((CreateGraphicsDeviceDelegate)CreateGraphicsDevice);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositorInterop), new __MicroComICompositorInteropVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComISwapChainInteropProxy : Avalonia.MicroCom.MicroComProxyBase, ISwapChainInterop
+ {
+ public void SetSwapChain(IUnknown swapChain)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(swapChain), (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetSwapChain failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ISwapChainInterop), new Guid("26f496a0-7f38-45fb-88f7-faaabe67dd59"), (p, owns) => new __MicroComISwapChainInteropProxy(p, owns));
+ }
+
+ public __MicroComISwapChainInteropProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 1;
+ }
+
+ unsafe class __MicroComISwapChainInteropVTable : Avalonia.MicroCom.MicroComVtblBase
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetSwapChainDelegate(IntPtr @this, void* swapChain);
+ static int SetSwapChain(IntPtr @this, void* swapChain)
+ {
+ ISwapChainInterop __target = null;
+ try
+ {
+ {
+ __target = (ISwapChainInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetSwapChain(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(swapChain, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComISwapChainInteropVTable()
+ {
+ base.AddMethod((SetSwapChainDelegate)SetSwapChain);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ISwapChainInterop), new __MicroComISwapChainInteropVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositorDesktopInteropProxy : Avalonia.MicroCom.MicroComProxyBase, ICompositorDesktopInterop
+ {
+ public IDesktopWindowTarget CreateDesktopWindowTarget(IntPtr hwndTarget, int isTopmost)
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, hwndTarget, isTopmost, &__marshal_result, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateDesktopWindowTarget failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public void EnsureOnThread(int threadId)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, threadId, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("EnsureOnThread failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositorDesktopInterop), new Guid("29E691FA-4567-4DCA-B319-D0F207EB6807"), (p, owns) => new __MicroComICompositorDesktopInteropProxy(p, owns));
+ }
+
+ public __MicroComICompositorDesktopInteropProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 2;
+ }
+
+ unsafe class __MicroComICompositorDesktopInteropVTable : Avalonia.MicroCom.MicroComVtblBase
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateDesktopWindowTargetDelegate(IntPtr @this, IntPtr hwndTarget, int isTopmost, void** result);
+ static int CreateDesktopWindowTarget(IntPtr @this, IntPtr hwndTarget, int isTopmost, void** result)
+ {
+ ICompositorDesktopInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositorDesktopInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateDesktopWindowTarget(hwndTarget, isTopmost);
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int EnsureOnThreadDelegate(IntPtr @this, int threadId);
+ static int EnsureOnThread(IntPtr @this, int threadId)
+ {
+ ICompositorDesktopInterop __target = null;
+ try
+ {
+ {
+ __target = (ICompositorDesktopInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.EnsureOnThread(threadId);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositorDesktopInteropVTable()
+ {
+ base.AddMethod((CreateDesktopWindowTargetDelegate)CreateDesktopWindowTarget);
+ base.AddMethod((EnsureOnThreadDelegate)EnsureOnThread);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositorDesktopInterop), new __MicroComICompositorDesktopInteropVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIDesktopWindowTargetInteropProxy : Avalonia.MicroCom.MicroComProxyBase, IDesktopWindowTargetInterop
+ {
+ public IntPtr HWnd
+ {
+ get
+ {
+ int __result;
+ IntPtr value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetHWnd failed", __result);
+ return value;
+ }
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IDesktopWindowTargetInterop), new Guid("35DBF59E-E3F9-45B0-81E7-FE75F4145DC9"), (p, owns) => new __MicroComIDesktopWindowTargetInteropProxy(p, owns));
+ }
+
+ public __MicroComIDesktopWindowTargetInteropProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 1;
+ }
+
+ unsafe class __MicroComIDesktopWindowTargetInteropVTable : Avalonia.MicroCom.MicroComVtblBase
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetHWndDelegate(IntPtr @this, IntPtr* value);
+ static int GetHWnd(IntPtr @this, IntPtr* value)
+ {
+ IDesktopWindowTargetInterop __target = null;
+ try
+ {
+ {
+ __target = (IDesktopWindowTargetInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.HWnd;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIDesktopWindowTargetInteropVTable()
+ {
+ base.AddMethod((GetHWndDelegate)GetHWnd);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IDesktopWindowTargetInterop), new __MicroComIDesktopWindowTargetInteropVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIDesktopWindowContentBridgeInteropProxy : Avalonia.MicroCom.MicroComProxyBase, IDesktopWindowContentBridgeInterop
+ {
+ public void Initialize(ICompositor compositor, IntPtr parentHwnd)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(compositor), parentHwnd, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("Initialize failed", __result);
+ }
+
+ public IntPtr HWnd
+ {
+ get
+ {
+ int __result;
+ IntPtr value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetHWnd failed", __result);
+ return value;
+ }
+ }
+
+ public float AppliedScaleFactor
+ {
+ get
+ {
+ int __result;
+ float value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetAppliedScaleFactor failed", __result);
+ return value;
+ }
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IDesktopWindowContentBridgeInterop), new Guid("37642806-F421-4FD0-9F82-23AE7C776182"), (p, owns) => new __MicroComIDesktopWindowContentBridgeInteropProxy(p, owns));
+ }
+
+ public __MicroComIDesktopWindowContentBridgeInteropProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 3;
+ }
+
+ unsafe class __MicroComIDesktopWindowContentBridgeInteropVTable : Avalonia.MicroCom.MicroComVtblBase
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int InitializeDelegate(IntPtr @this, void* compositor, IntPtr parentHwnd);
+ static int Initialize(IntPtr @this, void* compositor, IntPtr parentHwnd)
+ {
+ IDesktopWindowContentBridgeInterop __target = null;
+ try
+ {
+ {
+ __target = (IDesktopWindowContentBridgeInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.Initialize(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(compositor, false), parentHwnd);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetHWndDelegate(IntPtr @this, IntPtr* value);
+ static int GetHWnd(IntPtr @this, IntPtr* value)
+ {
+ IDesktopWindowContentBridgeInterop __target = null;
+ try
+ {
+ {
+ __target = (IDesktopWindowContentBridgeInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.HWnd;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetAppliedScaleFactorDelegate(IntPtr @this, float* value);
+ static int GetAppliedScaleFactor(IntPtr @this, float* value)
+ {
+ IDesktopWindowContentBridgeInterop __target = null;
+ try
+ {
+ {
+ __target = (IDesktopWindowContentBridgeInterop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.AppliedScaleFactor;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIDesktopWindowContentBridgeInteropVTable()
+ {
+ base.AddMethod((InitializeDelegate)Initialize);
+ base.AddMethod((GetHWndDelegate)GetHWnd);
+ base.AddMethod((GetAppliedScaleFactorDelegate)GetAppliedScaleFactor);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IDesktopWindowContentBridgeInterop), new __MicroComIDesktopWindowContentBridgeInteropVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionGraphicsDeviceProxy : __MicroComIInspectableProxy, ICompositionGraphicsDevice
+ {
+ public ICompositionDrawingSurface CreateDrawingSurface(Avalonia.Win32.Interop.UnmanagedMethods.SIZE sizePixels, DirectXPixelFormat pixelFormat, DirectXAlphaMode alphaMode)
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, sizePixels, pixelFormat, alphaMode, &__marshal_result, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateDrawingSurface failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public void AddRenderingDeviceReplaced(void* handler, void* token)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, handler, token, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("AddRenderingDeviceReplaced failed", __result);
+ }
+
+ public void RemoveRenderingDeviceReplaced(int token)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, token, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("RemoveRenderingDeviceReplaced failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionGraphicsDevice), new Guid("FB22C6E1-80A2-4667-9936-DBEAF6EEFE95"), (p, owns) => new __MicroComICompositionGraphicsDeviceProxy(p, owns));
+ }
+
+ public __MicroComICompositionGraphicsDeviceProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 3;
+ }
+
+ unsafe class __MicroComICompositionGraphicsDeviceVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateDrawingSurfaceDelegate(IntPtr @this, Avalonia.Win32.Interop.UnmanagedMethods.SIZE sizePixels, DirectXPixelFormat pixelFormat, DirectXAlphaMode alphaMode, void** result);
+ static int CreateDrawingSurface(IntPtr @this, Avalonia.Win32.Interop.UnmanagedMethods.SIZE sizePixels, DirectXPixelFormat pixelFormat, DirectXAlphaMode alphaMode, void** result)
+ {
+ ICompositionGraphicsDevice __target = null;
+ try
+ {
+ {
+ __target = (ICompositionGraphicsDevice)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateDrawingSurface(sizePixels, pixelFormat, alphaMode);
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int AddRenderingDeviceReplacedDelegate(IntPtr @this, void* handler, void* token);
+ static int AddRenderingDeviceReplaced(IntPtr @this, void* handler, void* token)
+ {
+ ICompositionGraphicsDevice __target = null;
+ try
+ {
+ {
+ __target = (ICompositionGraphicsDevice)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.AddRenderingDeviceReplaced(handler, token);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int RemoveRenderingDeviceReplacedDelegate(IntPtr @this, int token);
+ static int RemoveRenderingDeviceReplaced(IntPtr @this, int token)
+ {
+ ICompositionGraphicsDevice __target = null;
+ try
+ {
+ {
+ __target = (ICompositionGraphicsDevice)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.RemoveRenderingDeviceReplaced(token);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositionGraphicsDeviceVTable()
+ {
+ base.AddMethod((CreateDrawingSurfaceDelegate)CreateDrawingSurface);
+ base.AddMethod((AddRenderingDeviceReplacedDelegate)AddRenderingDeviceReplaced);
+ base.AddMethod((RemoveRenderingDeviceReplacedDelegate)RemoveRenderingDeviceReplaced);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionGraphicsDevice), new __MicroComICompositionGraphicsDeviceVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionSurfaceProxy : __MicroComIInspectableProxy, ICompositionSurface
+ {
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionSurface), new Guid("1527540D-42C7-47A6-A408-668F79A90DFB"), (p, owns) => new __MicroComICompositionSurfaceProxy(p, owns));
+ }
+
+ public __MicroComICompositionSurfaceProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 0;
+ }
+
+ unsafe class __MicroComICompositionSurfaceVTable : __MicroComIInspectableVTable
+ {
+ public __MicroComICompositionSurfaceVTable()
+ {
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionSurface), new __MicroComICompositionSurfaceVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIDesktopWindowTargetProxy : __MicroComIInspectableProxy, IDesktopWindowTarget
+ {
+ public int IsTopmost
+ {
+ get
+ {
+ int __result;
+ int value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetIsTopmost failed", __result);
+ return value;
+ }
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IDesktopWindowTarget), new Guid("6329D6CA-3366-490E-9DB3-25312929AC51"), (p, owns) => new __MicroComIDesktopWindowTargetProxy(p, owns));
+ }
+
+ public __MicroComIDesktopWindowTargetProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 1;
+ }
+
+ unsafe class __MicroComIDesktopWindowTargetVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetIsTopmostDelegate(IntPtr @this, int* value);
+ static int GetIsTopmost(IntPtr @this, int* value)
+ {
+ IDesktopWindowTarget __target = null;
+ try
+ {
+ {
+ __target = (IDesktopWindowTarget)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.IsTopmost;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIDesktopWindowTargetVTable()
+ {
+ base.AddMethod((GetIsTopmostDelegate)GetIsTopmost);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IDesktopWindowTarget), new __MicroComIDesktopWindowTargetVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionDrawingSurfaceProxy : __MicroComIInspectableProxy, ICompositionDrawingSurface
+ {
+ public DirectXAlphaMode AlphaMode
+ {
+ get
+ {
+ int __result;
+ DirectXAlphaMode value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetAlphaMode failed", __result);
+ return value;
+ }
+ }
+
+ public DirectXPixelFormat PixelFormat
+ {
+ get
+ {
+ int __result;
+ DirectXPixelFormat value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetPixelFormat failed", __result);
+ return value;
+ }
+ }
+
+ public Avalonia.Win32.Interop.UnmanagedMethods.POINT Size
+ {
+ get
+ {
+ int __result;
+ Avalonia.Win32.Interop.UnmanagedMethods.POINT value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetSize failed", __result);
+ return value;
+ }
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionDrawingSurface), new Guid("A166C300-FAD0-4D11-9E67-E433162FF49E"), (p, owns) => new __MicroComICompositionDrawingSurfaceProxy(p, owns));
+ }
+
+ public __MicroComICompositionDrawingSurfaceProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 3;
+ }
+
+ unsafe class __MicroComICompositionDrawingSurfaceVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetAlphaModeDelegate(IntPtr @this, DirectXAlphaMode* value);
+ static int GetAlphaMode(IntPtr @this, DirectXAlphaMode* value)
+ {
+ ICompositionDrawingSurface __target = null;
+ try
+ {
+ {
+ __target = (ICompositionDrawingSurface)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.AlphaMode;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetPixelFormatDelegate(IntPtr @this, DirectXPixelFormat* value);
+ static int GetPixelFormat(IntPtr @this, DirectXPixelFormat* value)
+ {
+ ICompositionDrawingSurface __target = null;
+ try
+ {
+ {
+ __target = (ICompositionDrawingSurface)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.PixelFormat;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetSizeDelegate(IntPtr @this, Avalonia.Win32.Interop.UnmanagedMethods.POINT* value);
+ static int GetSize(IntPtr @this, Avalonia.Win32.Interop.UnmanagedMethods.POINT* value)
+ {
+ ICompositionDrawingSurface __target = null;
+ try
+ {
+ {
+ __target = (ICompositionDrawingSurface)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Size;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositionDrawingSurfaceVTable()
+ {
+ base.AddMethod((GetAlphaModeDelegate)GetAlphaMode);
+ base.AddMethod((GetPixelFormatDelegate)GetPixelFormat);
+ base.AddMethod((GetSizeDelegate)GetSize);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionDrawingSurface), new __MicroComICompositionDrawingSurfaceVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionSurfaceBrushProxy : __MicroComIInspectableProxy, ICompositionSurfaceBrush
+ {
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionSurfaceBrush), new Guid("AD016D79-1E4C-4C0D-9C29-83338C87C162"), (p, owns) => new __MicroComICompositionSurfaceBrushProxy(p, owns));
+ }
+
+ public __MicroComICompositionSurfaceBrushProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 0;
+ }
+
+ unsafe class __MicroComICompositionSurfaceBrushVTable : __MicroComIInspectableVTable
+ {
+ public __MicroComICompositionSurfaceBrushVTable()
+ {
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionSurfaceBrush), new __MicroComICompositionSurfaceBrushVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionBrushProxy : __MicroComIInspectableProxy, ICompositionBrush
+ {
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionBrush), new Guid("AB0D7608-30C0-40E9-B568-B60A6BD1FB46"), (p, owns) => new __MicroComICompositionBrushProxy(p, owns));
+ }
+
+ public __MicroComICompositionBrushProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 0;
+ }
+
+ unsafe class __MicroComICompositionBrushVTable : __MicroComIInspectableVTable
+ {
+ public __MicroComICompositionBrushVTable()
+ {
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionBrush), new __MicroComICompositionBrushVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIVisualProxy : __MicroComIInspectableProxy, IVisual
+ {
+ public System.Numerics.Vector2 AnchorPoint
+ {
+ get
+ {
+ int __result;
+ System.Numerics.Vector2 value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetAnchorPoint failed", __result);
+ return value;
+ }
+ }
+
+ public void SetAnchorPoint(System.Numerics.Vector2 value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetAnchorPoint failed", __result);
+ }
+
+ public CompositionBackfaceVisibility BackfaceVisibility
+ {
+ get
+ {
+ int __result;
+ CompositionBackfaceVisibility value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetBackfaceVisibility failed", __result);
+ return value;
+ }
+ }
+
+ public void SetBackfaceVisibility(CompositionBackfaceVisibility value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 3]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetBackfaceVisibility failed", __result);
+ }
+
+ public CompositionBorderMode BorderMode
+ {
+ get
+ {
+ int __result;
+ CompositionBorderMode value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 4]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetBorderMode failed", __result);
+ return value;
+ }
+ }
+
+ public void SetBorderMode(CompositionBorderMode value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 5]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetBorderMode failed", __result);
+ }
+
+ public System.Numerics.Vector3 CenterPoint
+ {
+ get
+ {
+ int __result;
+ System.Numerics.Vector3 value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 6]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetCenterPoint failed", __result);
+ return value;
+ }
+ }
+
+ public void SetCenterPoint(System.Numerics.Vector3 value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 7]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetCenterPoint failed", __result);
+ }
+
+ public void* Clip
+ {
+ get
+ {
+ int __result;
+ void* value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 8]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetClip failed", __result);
+ return value;
+ }
+ }
+
+ public void SetClip(void* value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 9]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetClip failed", __result);
+ }
+
+ public CompositionCompositeMode CompositeMode
+ {
+ get
+ {
+ int __result;
+ CompositionCompositeMode value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 10]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetCompositeMode failed", __result);
+ return value;
+ }
+ }
+
+ public void SetCompositeMode(CompositionCompositeMode value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 11]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetCompositeMode failed", __result);
+ }
+
+ public int IsVisible
+ {
+ get
+ {
+ int __result;
+ int value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 12]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetIsVisible failed", __result);
+ return value;
+ }
+ }
+
+ public void SetIsVisible(int value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 13]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetIsVisible failed", __result);
+ }
+
+ public System.Numerics.Vector3 Offset
+ {
+ get
+ {
+ int __result;
+ System.Numerics.Vector3 value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 14]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetOffset failed", __result);
+ return value;
+ }
+ }
+
+ public void SetOffset(System.Numerics.Vector3 value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 15]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetOffset failed", __result);
+ }
+
+ public float Opacity
+ {
+ get
+ {
+ int __result;
+ float value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 16]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetOpacity failed", __result);
+ return value;
+ }
+ }
+
+ public void SetOpacity(float value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 17]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetOpacity failed", __result);
+ }
+
+ public System.Numerics.Quaternion Orientation
+ {
+ get
+ {
+ int __result;
+ System.Numerics.Quaternion value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 18]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetOrientation failed", __result);
+ return value;
+ }
+ }
+
+ public void SetOrientation(System.Numerics.Quaternion value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 19]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetOrientation failed", __result);
+ }
+
+ public IContainerVisual Parent
+ {
+ get
+ {
+ int __result;
+ void* __marshal_value = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_value, (*PPV)[base.VTableSize + 20]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetParent failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_value, true);
+ }
+ }
+
+ public float RotationAngle
+ {
+ get
+ {
+ int __result;
+ float value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 21]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetRotationAngle failed", __result);
+ return value;
+ }
+ }
+
+ public void SetRotationAngle(float value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 22]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetRotationAngle failed", __result);
+ }
+
+ public float RotationAngleInDegrees
+ {
+ get
+ {
+ int __result;
+ float value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 23]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetRotationAngleInDegrees failed", __result);
+ return value;
+ }
+ }
+
+ public void SetRotationAngleInDegrees(float value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 24]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetRotationAngleInDegrees failed", __result);
+ }
+
+ public System.Numerics.Vector3 RotationAxis
+ {
+ get
+ {
+ int __result;
+ System.Numerics.Vector3 value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 25]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetRotationAxis failed", __result);
+ return value;
+ }
+ }
+
+ public void SetRotationAxis(System.Numerics.Vector3 value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 26]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetRotationAxis failed", __result);
+ }
+
+ public System.Numerics.Vector3 Scale
+ {
+ get
+ {
+ int __result;
+ System.Numerics.Vector3 value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 27]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetScale failed", __result);
+ return value;
+ }
+ }
+
+ public void SetScale(System.Numerics.Vector3 value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 28]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetScale failed", __result);
+ }
+
+ public System.Numerics.Vector2 Size
+ {
+ get
+ {
+ int __result;
+ System.Numerics.Vector2 value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 29]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetSize failed", __result);
+ return value;
+ }
+ }
+
+ public void SetSize(System.Numerics.Vector2 value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 30]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetSize failed", __result);
+ }
+
+ public System.Numerics.Matrix4x4 TransformMatrix
+ {
+ get
+ {
+ int __result;
+ System.Numerics.Matrix4x4 value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 31]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetTransformMatrix failed", __result);
+ return value;
+ }
+ }
+
+ public void SetTransformMatrix(System.Numerics.Matrix4x4 value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 32]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetTransformMatrix failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IVisual), new Guid("117E202D-A859-4C89-873B-C2AA566788E3"), (p, owns) => new __MicroComIVisualProxy(p, owns));
+ }
+
+ public __MicroComIVisualProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 33;
+ }
+
+ unsafe class __MicroComIVisualVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetAnchorPointDelegate(IntPtr @this, System.Numerics.Vector2* value);
+ static int GetAnchorPoint(IntPtr @this, System.Numerics.Vector2* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.AnchorPoint;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetAnchorPointDelegate(IntPtr @this, System.Numerics.Vector2 value);
+ static int SetAnchorPoint(IntPtr @this, System.Numerics.Vector2 value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetAnchorPoint(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetBackfaceVisibilityDelegate(IntPtr @this, CompositionBackfaceVisibility* value);
+ static int GetBackfaceVisibility(IntPtr @this, CompositionBackfaceVisibility* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.BackfaceVisibility;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetBackfaceVisibilityDelegate(IntPtr @this, CompositionBackfaceVisibility value);
+ static int SetBackfaceVisibility(IntPtr @this, CompositionBackfaceVisibility value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetBackfaceVisibility(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetBorderModeDelegate(IntPtr @this, CompositionBorderMode* value);
+ static int GetBorderMode(IntPtr @this, CompositionBorderMode* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.BorderMode;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetBorderModeDelegate(IntPtr @this, CompositionBorderMode value);
+ static int SetBorderMode(IntPtr @this, CompositionBorderMode value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetBorderMode(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetCenterPointDelegate(IntPtr @this, System.Numerics.Vector3* value);
+ static int GetCenterPoint(IntPtr @this, System.Numerics.Vector3* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CenterPoint;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetCenterPointDelegate(IntPtr @this, System.Numerics.Vector3 value);
+ static int SetCenterPoint(IntPtr @this, System.Numerics.Vector3 value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetCenterPoint(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetClipDelegate(IntPtr @this, void** value);
+ static int GetClip(IntPtr @this, void** value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Clip;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetClipDelegate(IntPtr @this, void* value);
+ static int SetClip(IntPtr @this, void* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetClip(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetCompositeModeDelegate(IntPtr @this, CompositionCompositeMode* value);
+ static int GetCompositeMode(IntPtr @this, CompositionCompositeMode* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CompositeMode;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetCompositeModeDelegate(IntPtr @this, CompositionCompositeMode value);
+ static int SetCompositeMode(IntPtr @this, CompositionCompositeMode value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetCompositeMode(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetIsVisibleDelegate(IntPtr @this, int* value);
+ static int GetIsVisible(IntPtr @this, int* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.IsVisible;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetIsVisibleDelegate(IntPtr @this, int value);
+ static int SetIsVisible(IntPtr @this, int value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetIsVisible(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetOffsetDelegate(IntPtr @this, System.Numerics.Vector3* value);
+ static int GetOffset(IntPtr @this, System.Numerics.Vector3* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Offset;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetOffsetDelegate(IntPtr @this, System.Numerics.Vector3 value);
+ static int SetOffset(IntPtr @this, System.Numerics.Vector3 value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetOffset(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetOpacityDelegate(IntPtr @this, float* value);
+ static int GetOpacity(IntPtr @this, float* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Opacity;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetOpacityDelegate(IntPtr @this, float value);
+ static int SetOpacity(IntPtr @this, float value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetOpacity(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetOrientationDelegate(IntPtr @this, System.Numerics.Quaternion* value);
+ static int GetOrientation(IntPtr @this, System.Numerics.Quaternion* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Orientation;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetOrientationDelegate(IntPtr @this, System.Numerics.Quaternion value);
+ static int SetOrientation(IntPtr @this, System.Numerics.Quaternion value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetOrientation(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetParentDelegate(IntPtr @this, void** value);
+ static int GetParent(IntPtr @this, void** value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Parent;
+ *value = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetRotationAngleDelegate(IntPtr @this, float* value);
+ static int GetRotationAngle(IntPtr @this, float* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.RotationAngle;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetRotationAngleDelegate(IntPtr @this, float value);
+ static int SetRotationAngle(IntPtr @this, float value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetRotationAngle(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetRotationAngleInDegreesDelegate(IntPtr @this, float* value);
+ static int GetRotationAngleInDegrees(IntPtr @this, float* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.RotationAngleInDegrees;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetRotationAngleInDegreesDelegate(IntPtr @this, float value);
+ static int SetRotationAngleInDegrees(IntPtr @this, float value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetRotationAngleInDegrees(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetRotationAxisDelegate(IntPtr @this, System.Numerics.Vector3* value);
+ static int GetRotationAxis(IntPtr @this, System.Numerics.Vector3* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.RotationAxis;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetRotationAxisDelegate(IntPtr @this, System.Numerics.Vector3 value);
+ static int SetRotationAxis(IntPtr @this, System.Numerics.Vector3 value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetRotationAxis(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetScaleDelegate(IntPtr @this, System.Numerics.Vector3* value);
+ static int GetScale(IntPtr @this, System.Numerics.Vector3* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Scale;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetScaleDelegate(IntPtr @this, System.Numerics.Vector3 value);
+ static int SetScale(IntPtr @this, System.Numerics.Vector3 value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetScale(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetSizeDelegate(IntPtr @this, System.Numerics.Vector2* value);
+ static int GetSize(IntPtr @this, System.Numerics.Vector2* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Size;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetSizeDelegate(IntPtr @this, System.Numerics.Vector2 value);
+ static int SetSize(IntPtr @this, System.Numerics.Vector2 value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetSize(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetTransformMatrixDelegate(IntPtr @this, System.Numerics.Matrix4x4* value);
+ static int GetTransformMatrix(IntPtr @this, System.Numerics.Matrix4x4* value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.TransformMatrix;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetTransformMatrixDelegate(IntPtr @this, System.Numerics.Matrix4x4 value);
+ static int SetTransformMatrix(IntPtr @this, System.Numerics.Matrix4x4 value)
+ {
+ IVisual __target = null;
+ try
+ {
+ {
+ __target = (IVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetTransformMatrix(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIVisualVTable()
+ {
+ base.AddMethod((GetAnchorPointDelegate)GetAnchorPoint);
+ base.AddMethod((SetAnchorPointDelegate)SetAnchorPoint);
+ base.AddMethod((GetBackfaceVisibilityDelegate)GetBackfaceVisibility);
+ base.AddMethod((SetBackfaceVisibilityDelegate)SetBackfaceVisibility);
+ base.AddMethod((GetBorderModeDelegate)GetBorderMode);
+ base.AddMethod((SetBorderModeDelegate)SetBorderMode);
+ base.AddMethod((GetCenterPointDelegate)GetCenterPoint);
+ base.AddMethod((SetCenterPointDelegate)SetCenterPoint);
+ base.AddMethod((GetClipDelegate)GetClip);
+ base.AddMethod((SetClipDelegate)SetClip);
+ base.AddMethod((GetCompositeModeDelegate)GetCompositeMode);
+ base.AddMethod((SetCompositeModeDelegate)SetCompositeMode);
+ base.AddMethod((GetIsVisibleDelegate)GetIsVisible);
+ base.AddMethod((SetIsVisibleDelegate)SetIsVisible);
+ base.AddMethod((GetOffsetDelegate)GetOffset);
+ base.AddMethod((SetOffsetDelegate)SetOffset);
+ base.AddMethod((GetOpacityDelegate)GetOpacity);
+ base.AddMethod((SetOpacityDelegate)SetOpacity);
+ base.AddMethod((GetOrientationDelegate)GetOrientation);
+ base.AddMethod((SetOrientationDelegate)SetOrientation);
+ base.AddMethod((GetParentDelegate)GetParent);
+ base.AddMethod((GetRotationAngleDelegate)GetRotationAngle);
+ base.AddMethod((SetRotationAngleDelegate)SetRotationAngle);
+ base.AddMethod((GetRotationAngleInDegreesDelegate)GetRotationAngleInDegrees);
+ base.AddMethod((SetRotationAngleInDegreesDelegate)SetRotationAngleInDegrees);
+ base.AddMethod((GetRotationAxisDelegate)GetRotationAxis);
+ base.AddMethod((SetRotationAxisDelegate)SetRotationAxis);
+ base.AddMethod((GetScaleDelegate)GetScale);
+ base.AddMethod((SetScaleDelegate)SetScale);
+ base.AddMethod((GetSizeDelegate)GetSize);
+ base.AddMethod((SetSizeDelegate)SetSize);
+ base.AddMethod((GetTransformMatrixDelegate)GetTransformMatrix);
+ base.AddMethod((SetTransformMatrixDelegate)SetTransformMatrix);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IVisual), new __MicroComIVisualVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIVisual2Proxy : __MicroComIInspectableProxy, IVisual2
+ {
+ public IVisual ParentForTransform
+ {
+ get
+ {
+ int __result;
+ void* __marshal_value = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetParentForTransform failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_value, true);
+ }
+ }
+
+ public void SetParentForTransform(IVisual value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(value), (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetParentForTransform failed", __result);
+ }
+
+ public System.Numerics.Vector3 RelativeOffsetAdjustment
+ {
+ get
+ {
+ int __result;
+ System.Numerics.Vector3 value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetRelativeOffsetAdjustment failed", __result);
+ return value;
+ }
+ }
+
+ public void SetRelativeOffsetAdjustment(System.Numerics.Vector3 value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 3]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetRelativeOffsetAdjustment failed", __result);
+ }
+
+ public System.Numerics.Vector2 RelativeSizeAdjustment
+ {
+ get
+ {
+ int __result;
+ System.Numerics.Vector2 value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 4]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetRelativeSizeAdjustment failed", __result);
+ return value;
+ }
+ }
+
+ public void SetRelativeSizeAdjustment(System.Numerics.Vector2 value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 5]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetRelativeSizeAdjustment failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IVisual2), new Guid("3052B611-56C3-4C3E-8BF3-F6E1AD473F06"), (p, owns) => new __MicroComIVisual2Proxy(p, owns));
+ }
+
+ public __MicroComIVisual2Proxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 6;
+ }
+
+ unsafe class __MicroComIVisual2VTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetParentForTransformDelegate(IntPtr @this, void** value);
+ static int GetParentForTransform(IntPtr @this, void** value)
+ {
+ IVisual2 __target = null;
+ try
+ {
+ {
+ __target = (IVisual2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.ParentForTransform;
+ *value = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetParentForTransformDelegate(IntPtr @this, void* value);
+ static int SetParentForTransform(IntPtr @this, void* value)
+ {
+ IVisual2 __target = null;
+ try
+ {
+ {
+ __target = (IVisual2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetParentForTransform(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(value, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetRelativeOffsetAdjustmentDelegate(IntPtr @this, System.Numerics.Vector3* value);
+ static int GetRelativeOffsetAdjustment(IntPtr @this, System.Numerics.Vector3* value)
+ {
+ IVisual2 __target = null;
+ try
+ {
+ {
+ __target = (IVisual2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.RelativeOffsetAdjustment;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetRelativeOffsetAdjustmentDelegate(IntPtr @this, System.Numerics.Vector3 value);
+ static int SetRelativeOffsetAdjustment(IntPtr @this, System.Numerics.Vector3 value)
+ {
+ IVisual2 __target = null;
+ try
+ {
+ {
+ __target = (IVisual2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetRelativeOffsetAdjustment(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetRelativeSizeAdjustmentDelegate(IntPtr @this, System.Numerics.Vector2* value);
+ static int GetRelativeSizeAdjustment(IntPtr @this, System.Numerics.Vector2* value)
+ {
+ IVisual2 __target = null;
+ try
+ {
+ {
+ __target = (IVisual2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.RelativeSizeAdjustment;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetRelativeSizeAdjustmentDelegate(IntPtr @this, System.Numerics.Vector2 value);
+ static int SetRelativeSizeAdjustment(IntPtr @this, System.Numerics.Vector2 value)
+ {
+ IVisual2 __target = null;
+ try
+ {
+ {
+ __target = (IVisual2)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetRelativeSizeAdjustment(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIVisual2VTable()
+ {
+ base.AddMethod((GetParentForTransformDelegate)GetParentForTransform);
+ base.AddMethod((SetParentForTransformDelegate)SetParentForTransform);
+ base.AddMethod((GetRelativeOffsetAdjustmentDelegate)GetRelativeOffsetAdjustment);
+ base.AddMethod((SetRelativeOffsetAdjustmentDelegate)SetRelativeOffsetAdjustment);
+ base.AddMethod((GetRelativeSizeAdjustmentDelegate)GetRelativeSizeAdjustment);
+ base.AddMethod((SetRelativeSizeAdjustmentDelegate)SetRelativeSizeAdjustment);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IVisual2), new __MicroComIVisual2VTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIContainerVisualProxy : __MicroComIInspectableProxy, IContainerVisual
+ {
+ public IVisualCollection Children
+ {
+ get
+ {
+ int __result;
+ void* __marshal_value = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetChildren failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_value, true);
+ }
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IContainerVisual), new Guid("02F6BC74-ED20-4773-AFE6-D49B4A93DB32"), (p, owns) => new __MicroComIContainerVisualProxy(p, owns));
+ }
+
+ public __MicroComIContainerVisualProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 1;
+ }
+
+ unsafe class __MicroComIContainerVisualVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetChildrenDelegate(IntPtr @this, void** value);
+ static int GetChildren(IntPtr @this, void** value)
+ {
+ IContainerVisual __target = null;
+ try
+ {
+ {
+ __target = (IContainerVisual)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Children;
+ *value = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIContainerVisualVTable()
+ {
+ base.AddMethod((GetChildrenDelegate)GetChildren);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IContainerVisual), new __MicroComIContainerVisualVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIVisualCollectionProxy : __MicroComIInspectableProxy, IVisualCollection
+ {
+ public int Count
+ {
+ get
+ {
+ int __result;
+ int value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetCount failed", __result);
+ return value;
+ }
+ }
+
+ public void InsertAbove(IVisual newChild, IVisual sibling)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(newChild), Avalonia.MicroCom.MicroComRuntime.GetNativePointer(sibling), (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("InsertAbove failed", __result);
+ }
+
+ public void InsertAtBottom(IVisual newChild)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(newChild), (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("InsertAtBottom failed", __result);
+ }
+
+ public void InsertAtTop(IVisual newChild)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(newChild), (*PPV)[base.VTableSize + 3]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("InsertAtTop failed", __result);
+ }
+
+ public void InsertBelow(IVisual newChild, IVisual sibling)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(newChild), Avalonia.MicroCom.MicroComRuntime.GetNativePointer(sibling), (*PPV)[base.VTableSize + 4]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("InsertBelow failed", __result);
+ }
+
+ public void Remove(IVisual child)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(child), (*PPV)[base.VTableSize + 5]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("Remove failed", __result);
+ }
+
+ public void RemoveAll()
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, (*PPV)[base.VTableSize + 6]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("RemoveAll failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IVisualCollection), new Guid("8B745505-FD3E-4A98-84A8-E949468C6BCB"), (p, owns) => new __MicroComIVisualCollectionProxy(p, owns));
+ }
+
+ public __MicroComIVisualCollectionProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 7;
+ }
+
+ unsafe class __MicroComIVisualCollectionVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetCountDelegate(IntPtr @this, int* value);
+ static int GetCount(IntPtr @this, int* value)
+ {
+ IVisualCollection __target = null;
+ try
+ {
+ {
+ __target = (IVisualCollection)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Count;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int InsertAboveDelegate(IntPtr @this, void* newChild, void* sibling);
+ static int InsertAbove(IntPtr @this, void* newChild, void* sibling)
+ {
+ IVisualCollection __target = null;
+ try
+ {
+ {
+ __target = (IVisualCollection)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.InsertAbove(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(newChild, false), Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(sibling, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int InsertAtBottomDelegate(IntPtr @this, void* newChild);
+ static int InsertAtBottom(IntPtr @this, void* newChild)
+ {
+ IVisualCollection __target = null;
+ try
+ {
+ {
+ __target = (IVisualCollection)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.InsertAtBottom(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(newChild, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int InsertAtTopDelegate(IntPtr @this, void* newChild);
+ static int InsertAtTop(IntPtr @this, void* newChild)
+ {
+ IVisualCollection __target = null;
+ try
+ {
+ {
+ __target = (IVisualCollection)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.InsertAtTop(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(newChild, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int InsertBelowDelegate(IntPtr @this, void* newChild, void* sibling);
+ static int InsertBelow(IntPtr @this, void* newChild, void* sibling)
+ {
+ IVisualCollection __target = null;
+ try
+ {
+ {
+ __target = (IVisualCollection)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.InsertBelow(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(newChild, false), Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(sibling, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int RemoveDelegate(IntPtr @this, void* child);
+ static int Remove(IntPtr @this, void* child)
+ {
+ IVisualCollection __target = null;
+ try
+ {
+ {
+ __target = (IVisualCollection)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.Remove(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(child, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int RemoveAllDelegate(IntPtr @this);
+ static int RemoveAll(IntPtr @this)
+ {
+ IVisualCollection __target = null;
+ try
+ {
+ {
+ __target = (IVisualCollection)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.RemoveAll();
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIVisualCollectionVTable()
+ {
+ base.AddMethod((GetCountDelegate)GetCount);
+ base.AddMethod((InsertAboveDelegate)InsertAbove);
+ base.AddMethod((InsertAtBottomDelegate)InsertAtBottom);
+ base.AddMethod((InsertAtTopDelegate)InsertAtTop);
+ base.AddMethod((InsertBelowDelegate)InsertBelow);
+ base.AddMethod((RemoveDelegate)Remove);
+ base.AddMethod((RemoveAllDelegate)RemoveAll);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IVisualCollection), new __MicroComIVisualCollectionVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionTargetProxy : __MicroComIInspectableProxy, ICompositionTarget
+ {
+ public IVisual Root
+ {
+ get
+ {
+ int __result;
+ void* __marshal_value = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetRoot failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_value, true);
+ }
+ }
+
+ public void SetRoot(IVisual value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(value), (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetRoot failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionTarget), new Guid("A1BEA8BA-D726-4663-8129-6B5E7927FFA6"), (p, owns) => new __MicroComICompositionTargetProxy(p, owns));
+ }
+
+ public __MicroComICompositionTargetProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 2;
+ }
+
+ unsafe class __MicroComICompositionTargetVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetRootDelegate(IntPtr @this, void** value);
+ static int GetRoot(IntPtr @this, void** value)
+ {
+ ICompositionTarget __target = null;
+ try
+ {
+ {
+ __target = (ICompositionTarget)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Root;
+ *value = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetRootDelegate(IntPtr @this, void* value);
+ static int SetRoot(IntPtr @this, void* value)
+ {
+ ICompositionTarget __target = null;
+ try
+ {
+ {
+ __target = (ICompositionTarget)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetRoot(Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(value, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositionTargetVTable()
+ {
+ base.AddMethod((GetRootDelegate)GetRoot);
+ base.AddMethod((SetRootDelegate)SetRoot);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionTarget), new __MicroComICompositionTargetVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIGraphicsEffectProxy : __MicroComIInspectableProxy, IGraphicsEffect
+ {
+ public IntPtr Name
+ {
+ get
+ {
+ int __result;
+ IntPtr name = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &name, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetName failed", __result);
+ return name;
+ }
+ }
+
+ public void SetName(IntPtr name)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, name, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetName failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IGraphicsEffect), new Guid("CB51C0CE-8FE6-4636-B202-861FAA07D8F3"), (p, owns) => new __MicroComIGraphicsEffectProxy(p, owns));
+ }
+
+ public __MicroComIGraphicsEffectProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 2;
+ }
+
+ unsafe class __MicroComIGraphicsEffectVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetNameDelegate(IntPtr @this, IntPtr* name);
+ static int GetName(IntPtr @this, IntPtr* name)
+ {
+ IGraphicsEffect __target = null;
+ try
+ {
+ {
+ __target = (IGraphicsEffect)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Name;
+ *name = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetNameDelegate(IntPtr @this, IntPtr name);
+ static int SetName(IntPtr @this, IntPtr name)
+ {
+ IGraphicsEffect __target = null;
+ try
+ {
+ {
+ __target = (IGraphicsEffect)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetName(name);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIGraphicsEffectVTable()
+ {
+ base.AddMethod((GetNameDelegate)GetName);
+ base.AddMethod((SetNameDelegate)SetName);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IGraphicsEffect), new __MicroComIGraphicsEffectVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIGraphicsEffectSourceProxy : __MicroComIInspectableProxy, IGraphicsEffectSource
+ {
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IGraphicsEffectSource), new Guid("2D8F9DDC-4339-4EB9-9216-F9DEB75658A2"), (p, owns) => new __MicroComIGraphicsEffectSourceProxy(p, owns));
+ }
+
+ public __MicroComIGraphicsEffectSourceProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 0;
+ }
+
+ unsafe class __MicroComIGraphicsEffectSourceVTable : __MicroComIInspectableVTable
+ {
+ public __MicroComIGraphicsEffectSourceVTable()
+ {
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IGraphicsEffectSource), new __MicroComIGraphicsEffectSourceVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComIGraphicsEffectD2D1InteropProxy : Avalonia.MicroCom.MicroComProxyBase, IGraphicsEffectD2D1Interop
+ {
+ public Guid EffectId
+ {
+ get
+ {
+ int __result;
+ Guid id = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &id, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetEffectId failed", __result);
+ return id;
+ }
+ }
+
+ public void GetNamedPropertyMapping(IntPtr name, uint* index, GRAPHICS_EFFECT_PROPERTY_MAPPING* mapping)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, name, index, mapping, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetNamedPropertyMapping failed", __result);
+ }
+
+ public uint PropertyCount
+ {
+ get
+ {
+ int __result;
+ uint count = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &count, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetPropertyCount failed", __result);
+ return count;
+ }
+ }
+
+ public IPropertyValue GetProperty(uint index)
+ {
+ int __result;
+ void* __marshal_value = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, index, &__marshal_value, (*PPV)[base.VTableSize + 3]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetProperty failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_value, true);
+ }
+
+ public IGraphicsEffectSource GetSource(uint index)
+ {
+ int __result;
+ void* __marshal_source = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, index, &__marshal_source, (*PPV)[base.VTableSize + 4]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetSource failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_source, true);
+ }
+
+ public uint SourceCount
+ {
+ get
+ {
+ int __result;
+ uint count = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &count, (*PPV)[base.VTableSize + 5]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetSourceCount failed", __result);
+ return count;
+ }
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(IGraphicsEffectD2D1Interop), new Guid("2FC57384-A068-44D7-A331-30982FCF7177"), (p, owns) => new __MicroComIGraphicsEffectD2D1InteropProxy(p, owns));
+ }
+
+ public __MicroComIGraphicsEffectD2D1InteropProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 6;
+ }
+
+ unsafe class __MicroComIGraphicsEffectD2D1InteropVTable : Avalonia.MicroCom.MicroComVtblBase
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetEffectIdDelegate(IntPtr @this, Guid* id);
+ static int GetEffectId(IntPtr @this, Guid* id)
+ {
+ IGraphicsEffectD2D1Interop __target = null;
+ try
+ {
+ {
+ __target = (IGraphicsEffectD2D1Interop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.EffectId;
+ *id = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetNamedPropertyMappingDelegate(IntPtr @this, IntPtr name, uint* index, GRAPHICS_EFFECT_PROPERTY_MAPPING* mapping);
+ static int GetNamedPropertyMapping(IntPtr @this, IntPtr name, uint* index, GRAPHICS_EFFECT_PROPERTY_MAPPING* mapping)
+ {
+ IGraphicsEffectD2D1Interop __target = null;
+ try
+ {
+ {
+ __target = (IGraphicsEffectD2D1Interop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.GetNamedPropertyMapping(name, index, mapping);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetPropertyCountDelegate(IntPtr @this, uint* count);
+ static int GetPropertyCount(IntPtr @this, uint* count)
+ {
+ IGraphicsEffectD2D1Interop __target = null;
+ try
+ {
+ {
+ __target = (IGraphicsEffectD2D1Interop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.PropertyCount;
+ *count = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetPropertyDelegate(IntPtr @this, uint index, void** value);
+ static int GetProperty(IntPtr @this, uint index, void** value)
+ {
+ IGraphicsEffectD2D1Interop __target = null;
+ try
+ {
+ {
+ __target = (IGraphicsEffectD2D1Interop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetProperty(index);
+ *value = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetSourceDelegate(IntPtr @this, uint index, void** source);
+ static int GetSource(IntPtr @this, uint index, void** source)
+ {
+ IGraphicsEffectD2D1Interop __target = null;
+ try
+ {
+ {
+ __target = (IGraphicsEffectD2D1Interop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetSource(index);
+ *source = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetSourceCountDelegate(IntPtr @this, uint* count);
+ static int GetSourceCount(IntPtr @this, uint* count)
+ {
+ IGraphicsEffectD2D1Interop __target = null;
+ try
+ {
+ {
+ __target = (IGraphicsEffectD2D1Interop)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.SourceCount;
+ *count = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComIGraphicsEffectD2D1InteropVTable()
+ {
+ base.AddMethod((GetEffectIdDelegate)GetEffectId);
+ base.AddMethod((GetNamedPropertyMappingDelegate)GetNamedPropertyMapping);
+ base.AddMethod((GetPropertyCountDelegate)GetPropertyCount);
+ base.AddMethod((GetPropertyDelegate)GetProperty);
+ base.AddMethod((GetSourceDelegate)GetSource);
+ base.AddMethod((GetSourceCountDelegate)GetSourceCount);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(IGraphicsEffectD2D1Interop), new __MicroComIGraphicsEffectD2D1InteropVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionEffectSourceParameterProxy : __MicroComIInspectableProxy, ICompositionEffectSourceParameter
+ {
+ public IntPtr Name
+ {
+ get
+ {
+ int __result;
+ IntPtr value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetName failed", __result);
+ return value;
+ }
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionEffectSourceParameter), new Guid("858AB13A-3292-4E4E-B3BB-2B6C6544A6EE"), (p, owns) => new __MicroComICompositionEffectSourceParameterProxy(p, owns));
+ }
+
+ public __MicroComICompositionEffectSourceParameterProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 1;
+ }
+
+ unsafe class __MicroComICompositionEffectSourceParameterVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetNameDelegate(IntPtr @this, IntPtr* value);
+ static int GetName(IntPtr @this, IntPtr* value)
+ {
+ ICompositionEffectSourceParameter __target = null;
+ try
+ {
+ {
+ __target = (ICompositionEffectSourceParameter)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Name;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositionEffectSourceParameterVTable()
+ {
+ base.AddMethod((GetNameDelegate)GetName);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionEffectSourceParameter), new __MicroComICompositionEffectSourceParameterVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionEffectSourceParameterFactoryProxy : __MicroComIInspectableProxy, ICompositionEffectSourceParameterFactory
+ {
+ public ICompositionEffectSourceParameter Create(IntPtr name)
+ {
+ int __result;
+ void* __marshal_instance = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, name, &__marshal_instance, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("Create failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_instance, true);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionEffectSourceParameterFactory), new Guid("B3D9F276-ABA3-4724-ACF3-D0397464DB1C"), (p, owns) => new __MicroComICompositionEffectSourceParameterFactoryProxy(p, owns));
+ }
+
+ public __MicroComICompositionEffectSourceParameterFactoryProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 1;
+ }
+
+ unsafe class __MicroComICompositionEffectSourceParameterFactoryVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateDelegate(IntPtr @this, IntPtr name, void** instance);
+ static int Create(IntPtr @this, IntPtr name, void** instance)
+ {
+ ICompositionEffectSourceParameterFactory __target = null;
+ try
+ {
+ {
+ __target = (ICompositionEffectSourceParameterFactory)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Create(name);
+ *instance = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositionEffectSourceParameterFactoryVTable()
+ {
+ base.AddMethod((CreateDelegate)Create);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionEffectSourceParameterFactory), new __MicroComICompositionEffectSourceParameterFactoryVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionEffectFactoryProxy : __MicroComIInspectableProxy, ICompositionEffectFactory
+ {
+ public ICompositionEffectBrush CreateBrush()
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &__marshal_result, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("CreateBrush failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public int ExtendedError
+ {
+ get
+ {
+ int __result;
+ int value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetExtendedError failed", __result);
+ return value;
+ }
+ }
+
+ public CompositionEffectFactoryLoadStatus LoadStatus
+ {
+ get
+ {
+ int __result;
+ CompositionEffectFactoryLoadStatus value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 2]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetLoadStatus failed", __result);
+ return value;
+ }
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionEffectFactory), new Guid("BE5624AF-BA7E-4510-9850-41C0B4FF74DF"), (p, owns) => new __MicroComICompositionEffectFactoryProxy(p, owns));
+ }
+
+ public __MicroComICompositionEffectFactoryProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 3;
+ }
+
+ unsafe class __MicroComICompositionEffectFactoryVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int CreateBrushDelegate(IntPtr @this, void** result);
+ static int CreateBrush(IntPtr @this, void** result)
+ {
+ ICompositionEffectFactory __target = null;
+ try
+ {
+ {
+ __target = (ICompositionEffectFactory)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.CreateBrush();
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetExtendedErrorDelegate(IntPtr @this, int* value);
+ static int GetExtendedError(IntPtr @this, int* value)
+ {
+ ICompositionEffectFactory __target = null;
+ try
+ {
+ {
+ __target = (ICompositionEffectFactory)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.ExtendedError;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetLoadStatusDelegate(IntPtr @this, CompositionEffectFactoryLoadStatus* value);
+ static int GetLoadStatus(IntPtr @this, CompositionEffectFactoryLoadStatus* value)
+ {
+ ICompositionEffectFactory __target = null;
+ try
+ {
+ {
+ __target = (ICompositionEffectFactory)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.LoadStatus;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositionEffectFactoryVTable()
+ {
+ base.AddMethod((CreateBrushDelegate)CreateBrush);
+ base.AddMethod((GetExtendedErrorDelegate)GetExtendedError);
+ base.AddMethod((GetLoadStatusDelegate)GetLoadStatus);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionEffectFactory), new __MicroComICompositionEffectFactoryVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionEffectBrushProxy : __MicroComIInspectableProxy, ICompositionEffectBrush
+ {
+ public ICompositionBrush GetSourceParameter(IntPtr name)
+ {
+ int __result;
+ void* __marshal_result = null;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, name, &__marshal_result, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetSourceParameter failed", __result);
+ return Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(__marshal_result, true);
+ }
+
+ public void SetSourceParameter(IntPtr name, ICompositionBrush source)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, name, Avalonia.MicroCom.MicroComRuntime.GetNativePointer(source), (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetSourceParameter failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionEffectBrush), new Guid("BF7F795E-83CC-44BF-A447-3E3C071789EC"), (p, owns) => new __MicroComICompositionEffectBrushProxy(p, owns));
+ }
+
+ public __MicroComICompositionEffectBrushProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 2;
+ }
+
+ unsafe class __MicroComICompositionEffectBrushVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetSourceParameterDelegate(IntPtr @this, IntPtr name, void** result);
+ static int GetSourceParameter(IntPtr @this, IntPtr name, void** result)
+ {
+ ICompositionEffectBrush __target = null;
+ try
+ {
+ {
+ __target = (ICompositionEffectBrush)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.GetSourceParameter(name);
+ *result = Avalonia.MicroCom.MicroComRuntime.GetNativePointer(__result, true);
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetSourceParameterDelegate(IntPtr @this, IntPtr name, void* source);
+ static int SetSourceParameter(IntPtr @this, IntPtr name, void* source)
+ {
+ ICompositionEffectBrush __target = null;
+ try
+ {
+ {
+ __target = (ICompositionEffectBrush)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetSourceParameter(name, Avalonia.MicroCom.MicroComRuntime.CreateProxyFor(source, false));
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositionEffectBrushVTable()
+ {
+ base.AddMethod((GetSourceParameterDelegate)GetSourceParameter);
+ base.AddMethod((SetSourceParameterDelegate)SetSourceParameter);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionEffectBrush), new __MicroComICompositionEffectBrushVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionBackdropBrushProxy : __MicroComIInspectableProxy, ICompositionBackdropBrush
+ {
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionBackdropBrush), new Guid("C5ACAE58-3898-499E-8D7F-224E91286A5D"), (p, owns) => new __MicroComICompositionBackdropBrushProxy(p, owns));
+ }
+
+ public __MicroComICompositionBackdropBrushProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 0;
+ }
+
+ unsafe class __MicroComICompositionBackdropBrushVTable : __MicroComIInspectableVTable
+ {
+ public __MicroComICompositionBackdropBrushVTable()
+ {
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionBackdropBrush), new __MicroComICompositionBackdropBrushVTable().CreateVTable());
+ }
+
+ unsafe internal partial class __MicroComICompositionColorBrushProxy : __MicroComIInspectableProxy, ICompositionColorBrush
+ {
+ public Avalonia.Win32.WinRT.WinRTColor Color
+ {
+ get
+ {
+ int __result;
+ Avalonia.Win32.WinRT.WinRTColor value = default;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, &value, (*PPV)[base.VTableSize + 0]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("GetColor failed", __result);
+ return value;
+ }
+ }
+
+ public void SetColor(Avalonia.Win32.WinRT.WinRTColor value)
+ {
+ int __result;
+ __result = (int)LocalInterop.CalliStdCallint(PPV, value, (*PPV)[base.VTableSize + 1]);
+ if (__result != 0)
+ throw new System.Runtime.InteropServices.COMException("SetColor failed", __result);
+ }
+
+ static internal void __MicroComModuleInit()
+ {
+ Avalonia.MicroCom.MicroComRuntime.Register(typeof(ICompositionColorBrush), new Guid("2B264C5E-BF35-4831-8642-CF70C20FFF2F"), (p, owns) => new __MicroComICompositionColorBrushProxy(p, owns));
+ }
+
+ public __MicroComICompositionColorBrushProxy(IntPtr nativePointer, bool ownsHandle) : base(nativePointer, ownsHandle)
+ {
+ }
+
+ protected override int VTableSize => base.VTableSize + 2;
+ }
+
+ unsafe class __MicroComICompositionColorBrushVTable : __MicroComIInspectableVTable
+ {
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int GetColorDelegate(IntPtr @this, Avalonia.Win32.WinRT.WinRTColor* value);
+ static int GetColor(IntPtr @this, Avalonia.Win32.WinRT.WinRTColor* value)
+ {
+ ICompositionColorBrush __target = null;
+ try
+ {
+ {
+ __target = (ICompositionColorBrush)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ {
+ var __result = __target.Color;
+ *value = __result;
+ }
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)]
+ delegate int SetColorDelegate(IntPtr @this, Avalonia.Win32.WinRT.WinRTColor value);
+ static int SetColor(IntPtr @this, Avalonia.Win32.WinRT.WinRTColor value)
+ {
+ ICompositionColorBrush __target = null;
+ try
+ {
+ {
+ __target = (ICompositionColorBrush)Avalonia.MicroCom.MicroComRuntime.GetObjectFromCcw(@this);
+ __target.SetColor(value);
+ }
+ }
+ catch (System.Runtime.InteropServices.COMException __com_exception__)
+ {
+ return __com_exception__.ErrorCode;
+ }
+ catch (System.Exception __exception__)
+ {
+ Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);
+ return unchecked((int)0x80004005u);
+ }
+
+ return 0;
+ }
+
+ public __MicroComICompositionColorBrushVTable()
+ {
+ base.AddMethod((GetColorDelegate)GetColor);
+ base.AddMethod((SetColorDelegate)SetColor);
+ }
+
+ static internal void __MicroComModuleInit() => Avalonia.MicroCom.MicroComRuntime.RegisterVTable(typeof(ICompositionColorBrush), new __MicroComICompositionColorBrushVTable().CreateVTable());
+ }
+
+ class LocalInterop
+ {
+ static unsafe public int CalliStdCallint(void* thisObj, void* arg0, void* arg1, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, void* arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, void* arg0, AsyncStatus arg1, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, System.Numerics.Vector2 arg0, System.Numerics.Vector2 arg1, void* arg2, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, void* arg0, void* arg1, void* arg2, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, IntPtr arg0, void* arg1, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, float arg0, float arg1, float arg2, float arg3, void* arg4, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, CompositionBatchTypes arg0, void* arg1, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, int arg0, void* arg1, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, void* arg0, void* arg1, void* arg2, void* arg3, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, Avalonia.Win32.Interop.UnmanagedMethods.POINT arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, void* arg0, void* arg1, int arg2, int arg3, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, IntPtr arg0, int arg1, void* arg2, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, int arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, void* arg0, IntPtr arg1, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, Avalonia.Win32.Interop.UnmanagedMethods.SIZE arg0, DirectXPixelFormat arg1, DirectXAlphaMode arg2, void* arg3, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, System.Numerics.Vector2 arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, CompositionBackfaceVisibility arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, CompositionBorderMode arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, System.Numerics.Vector3 arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, CompositionCompositeMode arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, float arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, System.Numerics.Quaternion arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, System.Numerics.Matrix4x4 arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, IntPtr arg0, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, IntPtr arg0, void* arg1, void* arg2, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, uint arg0, void* arg1, void* methodPtr)
+ {
+ throw null;
+ }
+
+ static unsafe public int CalliStdCallint(void* thisObj, Avalonia.Win32.WinRT.WinRTColor arg0, void* methodPtr)
+ {
+ throw null;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/Windows/Avalonia.Win32/WinRT/WinRTColor.cs b/src/Windows/Avalonia.Win32/WinRT/WinRTColor.cs
new file mode 100644
index 0000000000..786d698daa
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/WinRTColor.cs
@@ -0,0 +1,18 @@
+using System.Runtime.InteropServices;
+
+namespace Avalonia.Win32.WinRT
+{
+ [StructLayout(LayoutKind.Sequential, Pack = 1)]
+ public struct WinRTColor
+ {
+ public byte A;
+ public byte R;
+ public byte G;
+ public byte B;
+
+ public static WinRTColor FromArgb(byte a, byte r, byte g, byte b) => new WinRTColor()
+ {
+ A = a, R = r, G = g, B = b
+ };
+ }
+}
diff --git a/src/Windows/Avalonia.Win32/WinRT/WinRTInspectable.cs b/src/Windows/Avalonia.Win32/WinRT/WinRTInspectable.cs
new file mode 100644
index 0000000000..d2ec957b8e
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/WinRTInspectable.cs
@@ -0,0 +1,38 @@
+using System;
+using System.Linq;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using Avalonia.MicroCom;
+
+namespace Avalonia.Win32.WinRT
+{
+ class WinRTInspectable : IInspectable, IMicroComShadowContainer
+ {
+ public virtual void Dispose()
+ {
+
+ }
+
+ public unsafe void GetIids(ulong* iidCount, Guid** iids)
+ {
+ var interfaces = GetType().GetInterfaces().Where(typeof(IUnknown).IsAssignableFrom)
+ .Select(MicroComRuntime.GetGuidFor).ToArray();
+ var mem = (Guid*)Marshal.AllocCoTaskMem(Unsafe.SizeOf() * interfaces.Length);
+ for (var c = 0; c < interfaces.Length; c++)
+ mem[c] = interfaces[c];
+ *iids = mem;
+ *iidCount = (ulong) interfaces.Length;
+ }
+
+ public IntPtr RuntimeClassName => NativeWinRTMethods.WindowsCreateString(GetType().FullName);
+ public TrustLevel TrustLevel => TrustLevel.BaseTrust;
+ public MicroComShadow Shadow { get; set; }
+ public virtual void OnReferencedFromNative()
+ {
+ }
+
+ public virtual void OnUnreferencedFromNative()
+ {
+ }
+ }
+}
diff --git a/src/Windows/Avalonia.Win32/WinRT/WinRTPropertyValue.cs b/src/Windows/Avalonia.Win32/WinRT/WinRTPropertyValue.cs
new file mode 100644
index 0000000000..684e7ff7b5
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/WinRTPropertyValue.cs
@@ -0,0 +1,89 @@
+using System;
+using System.Runtime.InteropServices;
+
+namespace Avalonia.Win32.WinRT
+{
+ class WinRTPropertyValue : WinRTInspectable, IPropertyValue
+ {
+ public WinRTPropertyValue(float f)
+ {
+ Type = PropertyType.Single;
+ Single = f;
+ }
+
+ public WinRTPropertyValue(uint u)
+ {
+ UInt32 = u;
+ Type = PropertyType.UInt32;
+ }
+
+ public PropertyType Type { get; }
+ public int IsNumericScalar { get; }
+ public byte UInt8 { get; }
+ public short Int16 { get; }
+ public ushort UInt16 { get; }
+ public int Int32 { get; }
+ public uint UInt32 { get; }
+ public long Int64 { get; }
+ public ulong UInt64 { get; }
+ public float Single { get; }
+ public double Double { get; }
+ public char Char16 { get; }
+ public int Boolean { get; }
+ public IntPtr String { get; }
+ public Guid Guid { get; }
+
+ private static COMException NotImplemented => new COMException("Not supported", unchecked((int)0x80004001));
+
+ public unsafe void GetDateTime(void* value) => throw NotImplemented;
+
+ public unsafe void GetTimeSpan(void* value) => throw NotImplemented;
+
+ public unsafe void GetPoint(void* value) => throw NotImplemented;
+
+ public unsafe void GetSize(void* value) => throw NotImplemented;
+
+ public unsafe void GetRect(void* value) => throw NotImplemented;
+
+ public unsafe byte* GetUInt8Array(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe short* GetInt16Array(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe ushort* GetUInt16Array(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe int* GetInt32Array(uint* __valueSize)
+ {
+ throw NotImplemented;
+ }
+
+ public unsafe uint* GetUInt32Array(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe long* GetInt64Array(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe ulong* GetUInt64Array(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe float* GetSingleArray(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe double* GetDoubleArray(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe char* GetChar16Array(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe int* GetBooleanArray(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe IntPtr* GetStringArray(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe void** GetInspectableArray(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe Guid* GetGuidArray(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe void* GetDateTimeArray(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe void* GetTimeSpanArray(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe void* GetPointArray(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe void* GetSizeArray(uint* __valueSize) => throw NotImplemented;
+
+ public unsafe void* GetRectArray(uint* __valueSize) => throw NotImplemented;
+ }
+}
diff --git a/src/Windows/Avalonia.Win32/WinRT/winrt.idl b/src/Windows/Avalonia.Win32/WinRT/winrt.idl
new file mode 100644
index 0000000000..9107eecd42
--- /dev/null
+++ b/src/Windows/Avalonia.Win32/WinRT/winrt.idl
@@ -0,0 +1,651 @@
+@clr-namespace Avalonia.Win32.WinRT
+@clr-access internal
+@clr-map FLOAT float
+@clr-map HSTRING IntPtr
+@clr-map Vector2 System.Numerics.Vector2
+@clr-map Vector3 System.Numerics.Vector3
+@clr-map Quaternion System.Numerics.Quaternion
+@clr-map Matrix4x4 System.Numerics.Matrix4x4
+@clr-map RECT Avalonia.Win32.Interop.UnmanagedMethods.RECT
+@clr-map SIZE Avalonia.Win32.Interop.UnmanagedMethods.SIZE
+@clr-map POINT Avalonia.Win32.Interop.UnmanagedMethods.POINT
+@clr-map HWND IntPtr
+@clr-map BOOL int
+@clr-map DWORD int
+@clr-map boolean int
+@clr-map BYTE byte
+@clr-map INT16 short
+@clr-map INT32 int
+@clr-map INT64 long
+@clr-map UINT16 ushort
+@clr-map UINT32 uint
+@clr-map UINT64 ulong
+@clr-map DOUBLE double
+@clr-map GUID System.Guid
+@clr-map WCHAR System.Char
+@clr-map Color Avalonia.Win32.WinRT.WinRTColor
+
+enum TrustLevel
+{
+ BaseTrust,
+ PartialTrust,
+ FullTrust
+}
+
+enum DirectXAlphaMode
+{
+ Unspecified,
+ Premultiplied,
+ Straight,
+ Ignore
+}
+
+enum DirectXPixelFormat
+{
+ Unknown = 0,
+ R32G32B32A32Typeless = 1,
+ R32G32B32A32Float = 2,
+ R32G32B32A32UInt = 3,
+ R32G32B32A32Int = 4,
+ R32G32B32Typeless = 5,
+ R32G32B32Float = 6,
+ R32G32B32UInt = 7,
+ R32G32B32Int = 8,
+ R16G16B16A16Typeless = 9,
+ R16G16B16A16Float = 10,
+ R16G16B16A16UIntNormalized = 11,
+ R16G16B16A16UInt = 12,
+ R16G16B16A16IntNormalized = 13,
+ R16G16B16A16Int = 14,
+ R32G32Typeless = 15,
+ R32G32Float = 16,
+ R32G32UInt = 17,
+ R32G32Int = 18,
+ R32G8X24Typeless = 19,
+ D32FloatS8X24UInt = 20,
+ R32FloatX8X24Typeless = 21,
+ X32TypelessG8X24UInt = 22,
+ R10G10B10A2Typeless = 23,
+ R10G10B10A2UIntNormalized = 24,
+ R10G10B10A2UInt = 25,
+ R11G11B10Float = 26,
+ R8G8B8A8Typeless = 27,
+ R8G8B8A8UIntNormalized = 28,
+ R8G8B8A8UIntNormalizedSrgb = 29,
+ R8G8B8A8UInt = 30,
+ R8G8B8A8IntNormalized = 31,
+ R8G8B8A8Int = 32,
+ R16G16Typeless = 33,
+ R16G16Float = 34,
+ R16G16UIntNormalized = 35,
+ R16G16UInt = 36,
+ R16G16IntNormalized = 37,
+ R16G16Int = 38,
+ R32Typeless = 39,
+ D32Float = 40,
+ R32Float = 41,
+ R32UInt = 42,
+ R32Int = 43,
+ R24G8Typeless = 44,
+ D24UIntNormalizedS8UInt = 45,
+ R24UIntNormalizedX8Typeless = 46,
+ X24TypelessG8UInt = 47,
+ R8G8Typeless = 48,
+ R8G8UIntNormalized = 49,
+ R8G8UInt = 50,
+ R8G8IntNormalized = 51,
+ R8G8Int = 52,
+ R16Typeless = 53,
+ R16Float = 54,
+ D16UIntNormalized = 55,
+ R16UIntNormalized = 56,
+ R16UInt = 57,
+ R16IntNormalized = 58,
+ R16Int = 59,
+ R8Typeless = 60,
+ R8UIntNormalized = 61,
+ R8UInt = 62,
+ R8IntNormalized = 63,
+ R8Int = 64,
+ A8UIntNormalized = 65,
+ R1UIntNormalized = 66,
+ R9G9B9E5SharedExponent = 67,
+ R8G8B8G8UIntNormalized = 68,
+ G8R8G8B8UIntNormalized = 69,
+ BC1Typeless = 70,
+ BC1UIntNormalized = 71,
+ BC1UIntNormalizedSrgb = 72,
+ BC2Typeless = 73,
+ BC2UIntNormalized = 74,
+ BC2UIntNormalizedSrgb = 75,
+ BC3Typeless = 76,
+ BC3UIntNormalized = 77,
+ BC3UIntNormalizedSrgb = 78,
+ BC4Typeless = 79,
+ BC4UIntNormalized = 80,
+ BC4IntNormalized = 81,
+ BC5Typeless = 82,
+ BC5UIntNormalized = 83,
+ BC5IntNormalized = 84,
+ B5G6R5UIntNormalized = 85,
+ B5G5R5A1UIntNormalized = 86,
+ B8G8R8A8UIntNormalized = 87,
+ B8G8R8X8UIntNormalized = 88,
+ R10G10B10XRBiasA2UIntNormalized = 89,
+ B8G8R8A8Typeless = 90,
+ B8G8R8A8UIntNormalizedSrgb = 91,
+ B8G8R8X8Typeless = 92,
+ B8G8R8X8UIntNormalizedSrgb = 93,
+ BC6HTypeless = 94,
+ BC6H16UnsignedFloat = 95,
+ BC6H16Float = 96,
+ BC7Typeless = 97,
+ BC7UIntNormalized = 98,
+ BC7UIntNormalizedSrgb = 99,
+ Ayuv = 100,
+ Y410 = 101,
+ Y416 = 102,
+ NV12 = 103,
+ P010 = 104,
+ P016 = 105,
+ Opaque420 = 106,
+ Yuy2 = 107,
+ Y210 = 108,
+ Y216 = 109,
+ NV11 = 110,
+ AI44 = 111,
+ IA44 = 112,
+ P8 = 113,
+ A8P8 = 114,
+ B4G4R4A4UIntNormalized = 115,
+ P208 = 130,
+ V208 = 131,
+ V408 = 132,
+}
+
+[uuid(AF86E2E0-B12D-4c6a-9C5A-D7AA65101E90)]
+interface IInspectable : IUnknown
+{
+ HRESULT GetIids(ulong * iidCount, Guid ** iids);
+ HRESULT GetRuntimeClassName( [out] IntPtr* className);
+ HRESULT GetTrustLevel([out] TrustLevel * trustLevel);
+}
+
+enum PropertyType
+{
+ Empty = 0,
+ UInt8 = 1,
+ Int16 = 2,
+ UInt16 = 3,
+ Int32 = 4,
+ UInt32 = 5,
+ Int64 = 6,
+ UInt64 = 7,
+ Single = 8,
+ Double = 9,
+ Char16 = 10,
+ Boolean = 11,
+ String = 12,
+ Inspectable = 13,
+ DateTime = 14,
+ TimeSpan = 15,
+ Guid = 16,
+ Point = 17,
+ Size = 18,
+ Rect = 19,
+ OtherType = 20,
+ UInt8Array = 1025,
+ Int16Array = 1026,
+ UInt16Array = 1027,
+ Int32Array = 1028,
+ UInt32Array = 1029,
+ Int64Array = 1030,
+ UInt64Array = 1031,
+ SingleArray = 1032,
+ DoubleArray = 1033,
+ Char16Array = 1034,
+ BooleanArray = 1035,
+ StringArray = 1036,
+ InspectableArray = 1037,
+ DateTimeArray = 1038,
+ TimeSpanArray = 1039,
+ GuidArray = 1040,
+ PointArray = 1041,
+ SizeArray = 1042,
+ RectArray = 1043,
+ OtherTypeArray = 1044
+}
+
+[uuid(4BD682DD-7554-40E9-9A9B-82654EDE7E62)]
+interface IPropertyValue : IInspectable
+{
+ [propget] HRESULT Type([out] [retval] PropertyType* value);
+ [propget] HRESULT IsNumericScalar([out] [retval] boolean* value);
+ HRESULT GetUInt8([out] [retval] BYTE* value);
+ HRESULT GetInt16([out] [retval] INT16* value);
+ HRESULT GetUInt16([out] [retval] UINT16* value);
+ HRESULT GetInt32([out] [retval] INT32* value);
+ HRESULT GetUInt32([out] [retval] UINT32* value);
+ HRESULT GetInt64([out] [retval] INT64* value);
+ HRESULT GetUInt64([out] [retval] UINT64* value);
+ HRESULT GetSingle([out] [retval] FLOAT* value);
+ HRESULT GetDouble([out] [retval] DOUBLE* value);
+ HRESULT GetChar16([out] [retval] WCHAR* value);
+ HRESULT GetBoolean([out] [retval] boolean* value);
+ HRESULT GetString([out] [retval] HSTRING* value);
+ HRESULT GetGuid([out] [retval] GUID* value);
+ HRESULT GetDateTime( void* value);
+ HRESULT GetTimeSpan(void* value);
+ HRESULT GetPoint(void* value);
+ HRESULT GetSize(void* value);
+ HRESULT GetRect(void* value);
+ HRESULT GetUInt8Array([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] BYTE** value);
+ HRESULT GetInt16Array([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] INT16** value);
+ HRESULT GetUInt16Array([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] UINT16** value);
+ HRESULT GetInt32Array([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] INT32** value);
+ HRESULT GetUInt32Array([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] UINT32** value);
+ HRESULT GetInt64Array([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] INT64** value);
+ HRESULT GetUInt64Array([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] UINT64** value);
+ HRESULT GetSingleArray([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] FLOAT** value);
+ HRESULT GetDoubleArray([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] DOUBLE** value);
+ HRESULT GetChar16Array([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] WCHAR** value);
+ HRESULT GetBooleanArray([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] boolean** value);
+ HRESULT GetStringArray([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] HSTRING** value);
+ HRESULT GetInspectableArray([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] void*** value);
+ HRESULT GetGuidArray([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] GUID** value);
+ HRESULT GetDateTimeArray([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] void** value);
+ HRESULT GetTimeSpanArray([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] void** value);
+ HRESULT GetPointArray([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] void** value);
+ HRESULT GetSizeArray([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] void** value);
+ HRESULT GetRectArray([out] UINT32* __valueSize, [out] [size_is(, *__valueSize)] void** value);
+}
+
+enum AsyncStatus {
+ Started = 0,
+ Completed,
+ Canceled,
+ Error,
+}
+
+[uuid(A4ED5C81-76C9-40BD-8BE6-B1D90FB20AE7)]
+interface IAsyncActionCompletedHandler : IUnknown
+{
+ HRESULT Invoke([in] IAsyncAction* asyncInfo, [in] AsyncStatus asyncStatus);
+}
+
+[uuid(5A648006-843A-4DA9-865B-9D26E5DFAD7B)]
+interface IAsyncAction : IInspectable
+{
+ HRESULT SetCompleted([in] IAsyncActionCompletedHandler* handler);
+ HRESULT GetCompleted([out] [retval] IAsyncActionCompletedHandler** ppv);
+ HRESULT GetResults();
+}
+
+[uuid(603E88E4-A338-4FFE-A457-A5CFB9CEB899)]
+interface IDispatcherQueue : IInspectable
+{
+ //TODO
+}
+
+[uuid(22F34E66-50DB-4E36-A98D-61C01B384D20)]
+interface IDispatcherQueueController : IInspectable
+{
+ [propget] HRESULT DispatcherQueue([out] [retval] IDispatcherQueue** value);
+ HRESULT ShutdownQueueAsync([out] [retval] IAsyncAction** operation);
+}
+
+[uuid(00000035-0000-0000-C000-000000000046)]
+interface IActivationFactory : IInspectable
+{
+ HRESULT ActivateInstance([out, retval] IntPtr* instance);
+}
+
+[flags]
+enum CompositionBatchTypes
+{
+ None = 0x0,
+ Animation = 0x1,
+ Effect = 0x2,
+ InfiniteAnimation = 0x4,
+ AllAnimations = 0x5
+}
+
+[uuid(B403CA50-7F8C-4E83-985F-CC45060036D8)]
+interface ICompositor : IInspectable
+{
+ HRESULT CreateColorKeyFrameAnimation([out] [retval] void** result);
+ [overload("CreateColorBrush")] HRESULT CreateColorBrush([out] [retval]void** result);
+ [overload("CreateColorBrush")] HRESULT CreateColorBrushWithColor([in] Color* color, [out] [retval] ICompositionColorBrush** result);
+ HRESULT CreateContainerVisual([out] [retval] IContainerVisual** result);
+ HRESULT CreateCubicBezierEasingFunction([in] Vector2 controlPoint1, [in] Vector2 controlPoint2, [out] [retval] void** result);
+ [overload("CreateEffectFactory")] HRESULT CreateEffectFactory([in] IGraphicsEffect* graphicsEffect, [out] [retval] ICompositionEffectFactory** result);
+ [overload("CreateEffectFactory")] HRESULT CreateEffectFactoryWithProperties([in] void* graphicsEffect, [in] void* animatableProperties, [out] [retval] void** result);
+ [overload("CreateExpressionAnimation")] HRESULT CreateExpressionAnimation([out] [retval] void** result);
+ [overload("CreateExpressionAnimation")] HRESULT CreateExpressionAnimationWithExpression([in] HSTRING expression, [out] [retval] void** result);
+ [overload("CreateInsetClip")] HRESULT CreateInsetClip([out] [retval] void** result);
+ [overload("CreateInsetClip")] HRESULT CreateInsetClipWithInsets([in] FLOAT leftInset, [in] FLOAT topInset, [in] FLOAT rightInset, [in] FLOAT bottomInset, [out] [retval] void** result);
+ HRESULT CreateLinearEasingFunction([out] [retval] void** result);
+ HRESULT CreatePropertySet([out] [retval] void** result);
+ HRESULT CreateQuaternionKeyFrameAnimation([out] [retval] void** result);
+ HRESULT CreateScalarKeyFrameAnimation([out] [retval] void** result);
+ HRESULT CreateScopedBatch([in] CompositionBatchTypes batchType, [out] [retval] void** result);
+ HRESULT CreateSpriteVisual([out] [retval] ISpriteVisual** result);
+ HRESULT CreateSurfaceBrush([out] [retval] ICompositionSurfaceBrush** result);
+ HRESULT CreateSurfaceBrushWithSurface([in] ICompositionSurface* surface,
+ [out] [retval] ICompositionSurfaceBrush** result);
+ HRESULT CreateTargetForCurrentView([out] [retval] void** result);
+ HRESULT CreateVector2KeyFrameAnimation([out] [retval] void** result);
+ HRESULT CreateVector3KeyFrameAnimation([out] [retval] void** result);
+ HRESULT CreateVector4KeyFrameAnimation([out] [retval] void** result);
+ HRESULT GetCommitBatch([in] CompositionBatchTypes batchType, [out] [retval] void** result);
+}
+
+[uuid(735081DC-5E24-45DA-A38F-E32CC349A9A0)]
+interface ICompositor2 : IInspectable
+{
+ HRESULT CreateAmbientLight([out] [retval] void** result);
+ HRESULT CreateAnimationGroup([out] [retval] void** result);
+ HRESULT CreateBackdropBrush([out] [retval] ICompositionBackdropBrush** result);
+ HRESULT CreateDistantLight([out] [retval] void** result);
+ HRESULT CreateDropShadow([out] [retval] void** result);
+ HRESULT CreateImplicitAnimationCollection([out] [retval] void** result);
+ HRESULT CreateLayerVisual([out] [retval] void** result);
+ HRESULT CreateMaskBrush([out] [retval] void** result);
+ HRESULT CreateNineGridBrush([out] [retval] void** result);
+ HRESULT CreatePointLight([out] [retval] void** result);
+ HRESULT CreateSpotLight([out] [retval] void** result);
+ [overload("CreateStepEasingFunction")] HRESULT CreateStepEasingFunction([out] [retval] void** result);
+ [overload("CreateStepEasingFunction")] HRESULT CreateStepEasingFunctionWithStepCount([in] INT32 stepCount, [out] [retval] void** result);
+}
+
+[uuid(08E05581-1AD1-4F97-9757-402D76E4233B)]
+interface ISpriteVisual : IInspectable
+{
+ [propget] HRESULT GetBrush([out] [retval] ICompositionBrush** value);
+ [propput] HRESULT SetBrush([in] ICompositionBrush* value);
+}
+
+[uuid(FD04E6E3-FE0C-4C3C-AB19-A07601A576EE)]
+interface ICompositionDrawingSurfaceInterop : IUnknown
+{
+ HRESULT BeginDraw(RECT* updateRect, Guid* iid, void** updateObject, [out, retval]POINT* updateOffset);
+ HRESULT EndDraw();
+ HRESULT Resize(POINT sizePixels);
+ HRESULT Scroll(RECT * scrollRect, RECT * clipRect, int offsetX, int offsetY);
+ HRESULT ResumeDraw();
+ HRESULT SuspendDraw();
+};
+
+[uuid(A116FF71-F8BF-4C8A-9C98-70779A32A9C8)]
+interface ICompositionGraphicsDeviceInterop : IUnknown
+{
+ HRESULT GetRenderingDevice([out] IUnknown ** value);
+ HRESULT SetRenderingDevice([out] IUnknown * value);
+};
+
+[uuid(25297D5C-3AD4-4C9C-B5CF-E36A38512330)]
+interface ICompositorInterop : IUnknown
+{
+ HRESULT CreateCompositionSurfaceForHandle(IntPtr swapChain, [out] ICompositionSurface ** res);
+ HRESULT CreateCompositionSurfaceForSwapChain(IUnknown* swapChain, [out] ICompositionSurface ** result);
+ HRESULT CreateGraphicsDevice(IUnknown * renderingDevice, [out] ICompositionGraphicsDevice ** result);
+};
+
+[uuid(26f496a0-7f38-45fb-88f7-faaabe67dd59)]
+interface ISwapChainInterop : IUnknown
+{
+ HRESULT SetSwapChain(IUnknown * swapChain);
+};
+
+/*
+[uuid(2C9DB356-E70D-4642-8298-BC4AA5B4865C)]
+interface ICompositionCapabilitiesInteropFactory : IInspectable
+{
+ HRESULT GetForWindow(IntPtr hwnd, [out] ICompositionCapabilities ** result);
+}*/
+
+[uuid(29E691FA-4567-4DCA-B319-D0F207EB6807)]
+interface ICompositorDesktopInterop : IUnknown
+{
+ HRESULT CreateDesktopWindowTarget(HWND hwndTarget, BOOL isTopmost, [out] IDesktopWindowTarget ** result);
+ HRESULT EnsureOnThread(DWORD threadId);
+};
+
+
+[uuid(35DBF59E-E3F9-45B0-81E7-FE75F4145DC9)]
+interface IDesktopWindowTargetInterop : IUnknown
+{
+ HRESULT GetHWnd([out] IntPtr* value);
+};
+
+[uuid(37642806-F421-4FD0-9F82-23AE7C776182)]
+interface IDesktopWindowContentBridgeInterop : IUnknown
+{
+ HRESULT Initialize(ICompositor* compositor, HWND parentHwnd);
+ HRESULT GetHWnd([out] IntPtr* value);
+
+ HRESULT GetAppliedScaleFactor([out] float* value);
+};
+
+[uuid(FB22C6E1-80A2-4667-9936-DBEAF6EEFE95)]
+interface ICompositionGraphicsDevice : IInspectable
+{
+ HRESULT CreateDrawingSurface([in] SIZE sizePixels, [in] DirectXPixelFormat pixelFormat,
+ [in] DirectXAlphaMode alphaMode, [out] [retval] ICompositionDrawingSurface** result);
+ HRESULT AddRenderingDeviceReplaced(void* handler, void* token);
+ HRESULT RemoveRenderingDeviceReplaced([in] int token);
+}
+
+[uuid(1527540D-42C7-47A6-A408-668F79A90DFB)]
+interface ICompositionSurface : IInspectable
+{
+}
+
+[uuid(6329D6CA-3366-490E-9DB3-25312929AC51)]
+interface IDesktopWindowTarget : IInspectable
+{
+ [propget] HRESULT IsTopmost([out] [retval] int* value);
+}
+
+
+[uuid(A166C300-FAD0-4D11-9E67-E433162FF49E)]
+interface ICompositionDrawingSurface : IInspectable
+{
+ [propget] HRESULT GetAlphaMode([out] [retval] DirectXAlphaMode* value);
+ [propget] HRESULT GetPixelFormat([out] [retval] DirectXPixelFormat* value);
+ [propget] HRESULT GetSize([out] [retval] POINT* value);
+}
+
+
+[uuid(AD016D79-1E4C-4C0D-9C29-83338C87C162)]
+interface ICompositionSurfaceBrush : IInspectable
+{
+ //TODO
+}
+
+[uuid(AB0D7608-30C0-40E9-B568-B60A6BD1FB46)]
+interface ICompositionBrush : IInspectable
+{
+}
+
+enum CompositionBackfaceVisibility
+{
+ Inherit,
+ Visible,
+ Hidden
+}
+
+enum CompositionBorderMode
+{
+ Inherit,
+ Soft,
+ Hard
+}
+
+enum CompositionCompositeMode
+{
+ Inherit,
+ SourceOver,
+ DestinationInvert,
+ MinBlend,
+}
+
+[uuid(117E202D-A859-4C89-873B-C2AA566788E3)]
+interface IVisual : IInspectable
+{
+ [propget] HRESULT AnchorPoint([out] [retval] Vector2* value);
+ [propput] HRESULT AnchorPoint([in] Vector2 value);
+ [propget] HRESULT BackfaceVisibility([out] [retval] CompositionBackfaceVisibility* value);
+ [propput] HRESULT BackfaceVisibility([in] CompositionBackfaceVisibility value);
+ [propget] HRESULT BorderMode([out] [retval] CompositionBorderMode* value);
+ [propput] HRESULT BorderMode([in] CompositionBorderMode value);
+ [propget] HRESULT CenterPoint([out] [retval] Vector3* value);
+ [propput] HRESULT CenterPoint([in] Vector3 value);
+ [propget] HRESULT Clip([out] [retval]void** value);
+ [propput] HRESULT Clip([in] void* value);
+ [propget] HRESULT CompositeMode([out] [retval] CompositionCompositeMode* value);
+ [propput] HRESULT CompositeMode([in] CompositionCompositeMode value);
+ [propget] HRESULT IsVisible([out] [retval] boolean* value);
+ [propput] HRESULT IsVisible([in] boolean value);
+ [propget] HRESULT Offset([out] [retval] Vector3* value);
+ [propput] HRESULT Offset([in] Vector3 value);
+ [propget] HRESULT Opacity([out] [retval] FLOAT* value);
+ [propput] HRESULT Opacity([in] FLOAT value);
+ [propget] HRESULT Orientation([out] [retval] Quaternion* value);
+ [propput] HRESULT Orientation([in] Quaternion value);
+ [propget] HRESULT Parent([out] [retval] IContainerVisual** value);
+ [propget] HRESULT RotationAngle([out] [retval] FLOAT* value);
+ [propput] HRESULT RotationAngle([in] FLOAT value);
+ [propget] HRESULT RotationAngleInDegrees([out] [retval] FLOAT* value);
+ [propput] HRESULT RotationAngleInDegrees([in] FLOAT value);
+ [propget] HRESULT RotationAxis([out] [retval] Vector3* value);
+ [propput] HRESULT RotationAxis([in] Vector3 value);
+ [propget] HRESULT Scale([out] [retval] Vector3* value);
+ [propput] HRESULT Scale([in] Vector3 value);
+ [propget] HRESULT Size([out] [retval] Vector2* value);
+ [propput] HRESULT Size([in] Vector2 value);
+ [propget] HRESULT TransformMatrix([out] [retval] Matrix4x4* value);
+ [propput] HRESULT TransformMatrix([in] Matrix4x4 value);
+}
+
+[uuid(3052B611-56C3-4C3E-8BF3-F6E1AD473F06)]
+interface IVisual2 : IInspectable
+{
+ [propget] HRESULT ParentForTransform([out] [retval] IVisual** value);
+ [propput] HRESULT ParentForTransform([in] IVisual* value);
+ [propget] HRESULT RelativeOffsetAdjustment([out] [retval] Vector3* value);
+ [propput] HRESULT RelativeOffsetAdjustment([in] Vector3 value);
+ [propget] HRESULT RelativeSizeAdjustment([out] [retval] Vector2* value);
+ [propput] HRESULT RelativeSizeAdjustment([in] Vector2 value);
+}
+
+[uuid(02F6BC74-ED20-4773-AFE6-D49B4A93DB32)]
+interface IContainerVisual : IInspectable
+{
+ [propget] HRESULT GetChildren([out] [retval] IVisualCollection** value);
+}
+
+[uuid(8B745505-FD3E-4A98-84A8-E949468C6BCB)]
+interface IVisualCollection : IInspectable
+{
+ [propget] HRESULT GetCount([out] [retval] INT32* value);
+ HRESULT InsertAbove([in] IVisual* newChild, [in] IVisual* sibling);
+ HRESULT InsertAtBottom([in] IVisual* newChild);
+ HRESULT InsertAtTop([in] IVisual* newChild);
+ HRESULT InsertBelow([in] IVisual* newChild, [in] IVisual* sibling);
+ HRESULT Remove([in] IVisual* child);
+ HRESULT RemoveAll();
+}
+
+[uuid(A1BEA8BA-D726-4663-8129-6B5E7927FFA6)]
+interface ICompositionTarget : IInspectable
+{
+ [propget] HRESULT Root([out] [retval] IVisual** value);
+ [propput] HRESULT Root([in] IVisual* value);
+}
+
+
+[uuid(CB51C0CE-8FE6-4636-B202-861FAA07D8F3)]
+interface IGraphicsEffect : IInspectable
+{
+ [propget] HRESULT Name([out] [retval] HSTRING* name);
+ [propput] HRESULT Name([in] HSTRING name);
+}
+
+[uuid(2D8F9DDC-4339-4EB9-9216-F9DEB75658A2)]
+interface IGraphicsEffectSource : IInspectable
+{
+}
+
+enum GRAPHICS_EFFECT_PROPERTY_MAPPING
+{
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_UNKNOWN,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_DIRECT,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORX,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORY,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORZ,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORW,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_RECT_TO_VECTOR4,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_RADIANS_TO_DEGREES,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_COLORMATRIX_ALPHA_MODE,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_COLOR_TO_VECTOR3,
+ GRAPHICS_EFFECT_PROPERTY_MAPPING_COLOR_TO_VECTOR4
+}
+
+[uuid(2FC57384-A068-44D7-A331-30982FCF7177)]
+interface IGraphicsEffectD2D1Interop : IUnknown
+{
+ HRESULT GetEffectId([out] Guid* id);
+ HRESULT GetNamedPropertyMapping(IntPtr name, uint* index, GRAPHICS_EFFECT_PROPERTY_MAPPING* mapping);
+ HRESULT GetPropertyCount([out] uint* count);
+ HRESULT GetProperty(uint index, [out]IPropertyValue** value);
+ HRESULT GetSource(uint index, [out, retval] IGraphicsEffectSource** source);
+ HRESULT GetSourceCount([retval]uint *count);
+};
+
+[uuid(858AB13A-3292-4E4E-B3BB-2B6C6544A6EE)]
+interface ICompositionEffectSourceParameter : IInspectable
+{
+ [propget] HRESULT Name([out] [retval] HSTRING* value);
+}
+
+[uuid(B3D9F276-ABA3-4724-ACF3-D0397464DB1C)]
+interface ICompositionEffectSourceParameterFactory : IInspectable
+{
+ HRESULT Create([in] HSTRING name, [out] [retval] ICompositionEffectSourceParameter** instance);
+}
+
+enum CompositionEffectFactoryLoadStatus
+{
+ Success = 0,
+ EffectTooComplex = 1,
+ Pending = 2,
+ Other = -1
+}
+
+[uuid(BE5624AF-BA7E-4510-9850-41C0B4FF74DF)]
+interface ICompositionEffectFactory : IInspectable
+{
+ HRESULT CreateBrush([out] [retval] ICompositionEffectBrush** result);
+ [propget] HRESULT ExtendedError([out] [retval] int* value);
+ [propget] HRESULT LoadStatus([out] [retval] CompositionEffectFactoryLoadStatus* value);
+}
+
+[uuid(BF7F795E-83CC-44BF-A447-3E3C071789EC)]
+interface ICompositionEffectBrush : IInspectable
+{
+ HRESULT GetSourceParameter([in] HSTRING name, [out] [retval] ICompositionBrush** result);
+ HRESULT SetSourceParameter([in] HSTRING name, [in] ICompositionBrush* source);
+}
+
+[uuid(C5ACAE58-3898-499E-8D7F-224E91286A5D)]
+interface ICompositionBackdropBrush : IInspectable
+{
+}
+
+[uuid(2B264C5E-BF35-4831-8642-CF70C20FFF2F)]
+interface ICompositionColorBrush : IInspectable
+{
+ [propget] HRESULT Color([out] [retval] Color* value);
+ [propput] HRESULT Color([in] Color value);
+}
diff --git a/src/Windows/Avalonia.Win32/WindowImpl.cs b/src/Windows/Avalonia.Win32/WindowImpl.cs
index 715c8fc01d..fcd92acd57 100644
--- a/src/Windows/Avalonia.Win32/WindowImpl.cs
+++ b/src/Windows/Avalonia.Win32/WindowImpl.cs
@@ -15,6 +15,8 @@ using Avalonia.Rendering;
using Avalonia.Win32.Input;
using Avalonia.Win32.Interop;
using Avalonia.Win32.OpenGl;
+using Avalonia.Win32.WinRT;
+using Avalonia.Win32.WinRT.Composition;
using static Avalonia.Win32.Interop.UnmanagedMethods;
namespace Avalonia.Win32
@@ -107,7 +109,7 @@ namespace Avalonia.Win32
var glPlatform = AvaloniaLocator.Current.GetService();
- var compositionConnector = AvaloniaLocator.Current.GetService();
+ var compositionConnector = AvaloniaLocator.Current.GetService();
_isUsingComposition = compositionConnector is { } &&
glPlatform is EglPlatformOpenGlInterface egl &&
@@ -121,8 +123,8 @@ namespace Avalonia.Win32
{
if (_isUsingComposition)
{
- var cgl = new CompositionEglGlPlatformSurface(glPlatform as EglPlatformOpenGlInterface, this);
- _blurHost = cgl.AttachToCompositionTree(compositionConnector, _hwnd);
+ var cgl = new WinUiCompositedWindowSurface(compositionConnector, this);
+ _blurHost = cgl;
_gl = cgl;
@@ -489,6 +491,8 @@ namespace Avalonia.Win32
public void Dispose()
{
+ (_gl as IDisposable)?.Dispose();
+
if (_dropTarget != null)
{
OleContext.Current?.UnregisterDragDrop(Handle);
diff --git a/src/tools/MicroComGenerator/AstParser.cs b/src/tools/MicroComGenerator/AstParser.cs
index 732c0496b3..388a8eb018 100644
--- a/src/tools/MicroComGenerator/AstParser.cs
+++ b/src/tools/MicroComGenerator/AstParser.cs
@@ -13,7 +13,8 @@ namespace MicroComGenerator
while (!parser.Eof)
{
var attrs = ParseLocalAttributes(ref parser);
-
+ if (parser.TryConsume(";"))
+ continue;
if (parser.TryParseKeyword("enum"))
idl.Enums.Add(ParseEnum(attrs, ref parser));
else if (parser.TryParseKeyword("struct"))
@@ -64,7 +65,7 @@ namespace MicroComGenerator
static AstAttributes ParseLocalAttributes(ref TokenParser parser)
{
var rv = new AstAttributes();
- if (parser.TryConsume("["))
+ while (parser.TryConsume("["))
{
while (!parser.TryConsume("]") && !parser.Eof)
{
@@ -78,7 +79,7 @@ namespace MicroComGenerator
if (parser.TryConsume(']'))
{
rv.Add(new AstAttributeNode(ident, null));
- return rv;
+ break;
}
// No value, next attribute
else if (parser.TryConsume(','))
diff --git a/src/tools/MicroComGenerator/CSharpGen.InterfaceGen.cs b/src/tools/MicroComGenerator/CSharpGen.InterfaceGen.cs
index 91ece81bd0..adb8faf938 100644
--- a/src/tools/MicroComGenerator/CSharpGen.InterfaceGen.cs
+++ b/src/tools/MicroComGenerator/CSharpGen.InterfaceGen.cs
@@ -21,7 +21,7 @@ namespace MicroComGenerator
{
public string Name;
public string NativeType;
-
+ public AstAttributes Attributes { get; set; }
public virtual StatementSyntax CreateFixed(StatementSyntax inner) => inner;
public virtual void PreMarshal(List body)
@@ -161,6 +161,13 @@ namespace MicroComGenerator
return type;
}
+ Arg ConvertArg(AstInterfaceMemberArgumentNode node)
+ {
+ var arg = ConvertArg(node.Name, node.Type);
+ arg.Attributes = node.Attributes.Clone();
+ return arg;
+ }
+
Arg ConvertArg(string name, AstTypeNode type)
{
type = new AstTypeNode { Name = ConvertNativeType(type.Name), PointerLevel = type.PointerLevel };
@@ -190,12 +197,19 @@ namespace MicroComGenerator
List vtblCtor, int num)
{
// Prepare method information
- var args = member.Select(a => ConvertArg(a.Name, a.Type)).ToList();
+ if (member.Name == "GetRenderingDevice")
+ Console.WriteLine();
+ var args = member.Select(ConvertArg).ToList();
var returnArg = ConvertArg("__result", member.ReturnType);
bool isHresult = member.ReturnType.Name == "HRESULT";
bool isHresultLastArgumentReturn = isHresult
&& args.Count > 0
- && (args.Last().Name == "ppv" || args.Last().Name == "retOut" || args.Last().Name == "ret")
+ && (args.Last().Name == "ppv"
+ || args.Last().Name == "retOut"
+ || args.Last().Name == "ret"
+ || args.Last().Attributes.HasAttribute("out")
+ || args.Last().Attributes.HasAttribute("retval")
+ )
&& ((member.Last().Type.PointerLevel > 0
&& !IsInterface(member.Last().Type))
|| member.Last().Type.PointerLevel == 2);
@@ -334,16 +348,27 @@ namespace MicroComGenerator
BlockSyntax backBodyBlock = Block().AddStatements(backPreMarshal.ToArray()).AddStatements(backCallStatement);
+ var exceptions = new List()
+ {
+ CatchClause(
+ CatchDeclaration(ParseTypeName("System.Exception"), Identifier("__exception__")), null,
+ Block(
+ ParseStatement(
+ "Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);"),
+ isHresult ? ParseStatement("return unchecked((int)0x80004005u);")
+ : isVoidReturn ? EmptyStatement() : ParseStatement("return default;")
+ ))
+ };
+
+ if (isHresult)
+ exceptions.Insert(0, CatchClause(
+ CatchDeclaration(ParseTypeName("System.Runtime.InteropServices.COMException"),
+ Identifier("__com_exception__")),
+ null, Block(ParseStatement("return __com_exception__.ErrorCode;"))));
+
backBodyBlock = Block(
TryStatement(
- SingletonList(CatchClause(
- CatchDeclaration(ParseTypeName("System.Exception"), Identifier("__exception__")), null,
- Block(
- ParseStatement(
- "Avalonia.MicroCom.MicroComRuntime.UnhandledException(__target, __exception__);"),
- isHresult ? ParseStatement("return unchecked((int)0x80004005u);")
- : isVoidReturn ? EmptyStatement() : ParseStatement("return default;")
- ))))
+ List(exceptions))
.WithBlock(Block(backBodyBlock))
);
if (isHresult)
diff --git a/src/tools/MicroComGenerator/CSharpGen.Utils.cs b/src/tools/MicroComGenerator/CSharpGen.Utils.cs
index 3a62220d12..da845b0ecd 100644
--- a/src/tools/MicroComGenerator/CSharpGen.Utils.cs
+++ b/src/tools/MicroComGenerator/CSharpGen.Utils.cs
@@ -68,10 +68,11 @@ namespace MicroComGenerator
bool IsPropertyRewriteCandidate(MethodDeclarationSyntax method)
{
- if(method.Identifier.Text.Contains("GetScaling"))
- Console.WriteLine();
- return (method.Identifier.Text.StartsWith("Get") &&
- method.ParameterList.Parameters.Count == 0);
+
+ return
+ method.ReturnType.ToFullString() != "void"
+ && method.Identifier.Text.StartsWith("Get")
+ && method.ParameterList.Parameters.Count == 0;
}
TypeDeclarationSyntax RewriteMethodsToProperties(T decl) where T : TypeDeclarationSyntax
diff --git a/src/tools/MicroComGenerator/CSharpGen.cs b/src/tools/MicroComGenerator/CSharpGen.cs
index 688036ffc2..c74e7af12e 100644
--- a/src/tools/MicroComGenerator/CSharpGen.cs
+++ b/src/tools/MicroComGenerator/CSharpGen.cs
@@ -22,7 +22,11 @@ namespace MicroComGenerator
public CSharpGen(AstIdlNode idl)
{
_idl = idl.Clone();
- new AstRewriter().VisitAst(_idl);
+ new AstRewriter(_idl.Attributes.Where(a => a.Name == "clr-map")
+ .Select(x => x.Value.Trim().Split(' '))
+ .ToDictionary(x => x[0], x => x[1])
+ ).VisitAst(_idl);
+
_extraUsings = _idl.Attributes.Where(u => u.Name == "clr-using").Select(u => u.Value).ToList();
_namespace = _idl.GetAttribute("clr-namespace");
var visibilityString = _idl.GetAttribute("clr-access");
@@ -37,6 +41,13 @@ namespace MicroComGenerator
class AstRewriter : AstVisitor
{
+ private readonly Dictionary _typeMap = new Dictionary();
+
+ public AstRewriter(Dictionary typeMap)
+ {
+ _typeMap = typeMap;
+ }
+
void ConvertIntPtr(AstTypeNode type)
{
if (type.Name == "void" && type.PointerLevel > 0)
@@ -60,6 +71,9 @@ namespace MicroComGenerator
type.PointerLevel++;
type.IsLink = false;
}
+
+ if (_typeMap.TryGetValue(type.Name, out var mapped))
+ type.Name = mapped;
base.VisitType(type);
}
@@ -80,6 +94,10 @@ namespace MicroComGenerator
{
if (member.HasAttribute("intptr"))
ConvertIntPtr(member.ReturnType);
+ if (member.HasAttribute("propget") && !member.Name.StartsWith("Get"))
+ member.Name = "Get" + member.Name;
+ if (member.HasAttribute("propput") && !member.Name.StartsWith("Set"))
+ member.Name = "Set" + member.Name;
base.VisitInterfaceMember(member);
}
}