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("1a0d8438-1d97-4ec1-aef9-a2fb86ed6acb")]
|
||||
[NativeTypeName("struct IDWriteFontList : IUnknown")]
|
||||
[NativeInheritance("IUnknown")]
|
||||
public unsafe partial struct IDWriteFontList : INativeGuid
|
||||
public unsafe partial struct IDWriteFontList : IDWriteFontList.Interface, INativeGuid
|
||||
{
|
||||
public static ref readonly Guid IID_IDWriteFontList
|
||||
{
|
||||
@@ -97,5 +97,16 @@ public unsafe partial struct IDWriteFontList : INativeGuid
|
||||
{
|
||||
return ((delegate* unmanaged[Stdcall]<IDWriteFontList*, uint, IDWriteFont**, int>)(lpVtbl[5]))((IDWriteFontList*)Unsafe.AsPointer(ref this), index, font);
|
||||
}
|
||||
public interface Interface : IUnknown.Interface
|
||||
{
|
||||
[VtblIndex(3)]
|
||||
HResult GetFontCollection(IDWriteFontCollection** fontCollection);
|
||||
|
||||
[VtblIndex(4)]
|
||||
uint GetFontCount();
|
||||
|
||||
[VtblIndex(5)]
|
||||
HResult GetFont(uint index, IDWriteFont** font);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user