Update metadata to 39.0.18-preview

Generator: Add initial Interface generation.
This commit is contained in:
Amer Koleci
2022-12-01 16:26:51 +01:00
parent b04caed143
commit 61295b00a2
572 changed files with 48214 additions and 887 deletions

View File

@@ -14,7 +14,7 @@ namespace Win32.Graphics.DirectWrite;
[Guid("791e8298-3ef3-4230-9880-c9bdecc42064")]
[NativeTypeName("struct IDWriteBitmapRenderTarget1 : IDWriteBitmapRenderTarget")]
[NativeInheritance("IDWriteBitmapRenderTarget")]
public unsafe partial struct IDWriteBitmapRenderTarget1 : INativeGuid
public unsafe partial struct IDWriteBitmapRenderTarget1 : IDWriteBitmapRenderTarget1.Interface, INativeGuid
{
public static ref readonly Guid IID_IDWriteBitmapRenderTarget1
{
@@ -153,5 +153,13 @@ public unsafe partial struct IDWriteBitmapRenderTarget1 : INativeGuid
{
return ((delegate* unmanaged[Stdcall]<IDWriteBitmapRenderTarget1*, TextAntialiasMode, int>)(lpVtbl[12]))((IDWriteBitmapRenderTarget1*)Unsafe.AsPointer(ref this), antialiasMode);
}
public interface Interface : IDWriteBitmapRenderTarget.Interface
{
[VtblIndex(11)]
TextAntialiasMode GetTextAntialiasMode();
[VtblIndex(12)]
HResult SetTextAntialiasMode(TextAntialiasMode antialiasMode);
}
}