mirror of
https://github.com/amerkoleci/Vortice.Win32.git
synced 2026-01-15 00:26:03 +08:00
Update metadata to 39.0.18-preview
Generator: Add initial Interface generation.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user