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("4ae63092-6327-4c1b-80ae-bfe12ea32b86")]
[NativeTypeName("struct IDXGISurface1 : IDXGISurface")]
[NativeInheritance("IDXGISurface")]
public unsafe partial struct IDXGISurface1 : INativeGuid
public unsafe partial struct IDXGISurface1 : IDXGISurface1.Interface, INativeGuid
{
public static ref readonly Guid IID_IDXGISurface1
{
@@ -153,5 +153,13 @@ public unsafe partial struct IDXGISurface1 : INativeGuid
{
return ((delegate* unmanaged[Stdcall]<IDXGISurface1*, RawRect*, int>)(lpVtbl[12]))((IDXGISurface1*)Unsafe.AsPointer(ref this), pDirtyRect);
}
public interface Interface : IDXGISurface.Interface
{
[VtblIndex(11)]
HResult GetDC(Bool32 Discard, IntPtr* phdc);
[VtblIndex(12)]
HResult ReleaseDC(RawRect* pDirtyRect);
}
}