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("da20d8ef-812a-4c43-9802-62ec4abd7add")]
|
||||
[NativeTypeName("struct IDWriteFontFamily : IDWriteFontList")]
|
||||
[NativeInheritance("IDWriteFontList")]
|
||||
public unsafe partial struct IDWriteFontFamily : INativeGuid
|
||||
public unsafe partial struct IDWriteFontFamily : IDWriteFontFamily.Interface, INativeGuid
|
||||
{
|
||||
public static ref readonly Guid IID_IDWriteFontFamily
|
||||
{
|
||||
@@ -121,5 +121,16 @@ public unsafe partial struct IDWriteFontFamily : INativeGuid
|
||||
{
|
||||
return ((delegate* unmanaged[Stdcall]<IDWriteFontFamily*, FontWeight, FontStretch, FontStyle, IDWriteFontList**, int>)(lpVtbl[8]))((IDWriteFontFamily*)Unsafe.AsPointer(ref this), weight, stretch, style, matchingFonts);
|
||||
}
|
||||
public interface Interface : IDWriteFontList.Interface
|
||||
{
|
||||
[VtblIndex(6)]
|
||||
HResult GetFamilyNames(IDWriteLocalizedStrings** names);
|
||||
|
||||
[VtblIndex(7)]
|
||||
HResult GetFirstMatchingFont(FontWeight weight, FontStretch stretch, FontStyle style, IDWriteFont** matchingFont);
|
||||
|
||||
[VtblIndex(8)]
|
||||
HResult GetMatchingFonts(FontWeight weight, FontStretch stretch, FontStyle style, IDWriteFontList** matchingFonts);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user