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.Direct2D;
[Guid("c9b664e5-74a1-4378-9ac2-eefc37a3f4d8")]
[NativeTypeName("struct ID2D1ImageSource : ID2D1Image")]
[NativeInheritance("ID2D1Image")]
public unsafe partial struct ID2D1ImageSource : INativeGuid
public unsafe partial struct ID2D1ImageSource : ID2D1ImageSource.Interface, INativeGuid
{
public static ref readonly Guid IID_ID2D1ImageSource
{
@@ -97,5 +97,13 @@ public unsafe partial struct ID2D1ImageSource : INativeGuid
{
return ((delegate* unmanaged[Stdcall]<ID2D1ImageSource*, Bool32*, int>)(lpVtbl[5]))((ID2D1ImageSource*)Unsafe.AsPointer(ref this), resourcesDiscarded);
}
public interface Interface : ID2D1Image.Interface
{
[VtblIndex(4)]
HResult OfferResources();
[VtblIndex(5)]
HResult TryReclaimResources(Bool32* resourcesDiscarded);
}
}