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("55f1112b-1dc2-4b3c-9541-f46894ed85b6")]
[NativeTypeName("struct IDWriteTypography : IUnknown")]
[NativeInheritance("IUnknown")]
public unsafe partial struct IDWriteTypography : INativeGuid
public unsafe partial struct IDWriteTypography : IDWriteTypography.Interface, INativeGuid
{
public static ref readonly Guid IID_IDWriteTypography
{
@@ -97,5 +97,16 @@ public unsafe partial struct IDWriteTypography : INativeGuid
{
return ((delegate* unmanaged[Stdcall]<IDWriteTypography*, uint, FontFeature*, int>)(lpVtbl[5]))((IDWriteTypography*)Unsafe.AsPointer(ref this), fontFeatureIndex, fontFeature);
}
public interface Interface : IUnknown.Interface
{
[VtblIndex(3)]
HResult AddFontFeature(FontFeature fontFeature);
[VtblIndex(4)]
uint GetFontFeatureCount();
[VtblIndex(5)]
HResult GetFontFeature(uint fontFeatureIndex, FontFeature* fontFeature);
}
}