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.Dxgi;
[Guid("119e7452-de9e-40fe-8806-88f90c12b441")]
[NativeTypeName("struct IDXGIDebug : IUnknown")]
[NativeInheritance("IUnknown")]
public unsafe partial struct IDXGIDebug : INativeGuid
public unsafe partial struct IDXGIDebug : IDXGIDebug.Interface, INativeGuid
{
public static ref readonly Guid IID_IDXGIDebug
{
@@ -81,5 +81,10 @@ public unsafe partial struct IDXGIDebug : INativeGuid
{
return ((delegate* unmanaged[Stdcall]<IDXGIDebug*, Guid, ReportLiveObjectFlags, int>)(lpVtbl[3]))((IDXGIDebug*)Unsafe.AsPointer(ref this), apiid, flags);
}
public interface Interface : IUnknown.Interface
{
[VtblIndex(3)]
HResult ReportLiveObjects(Guid apiid, ReportLiveObjectFlags flags);
}
}