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("00cddea8-939b-4b83-a340-a685226666cc")]
[NativeTypeName("struct IDXGIOutput1 : IDXGIOutput")]
[NativeInheritance("IDXGIOutput")]
public unsafe partial struct IDXGIOutput1 : INativeGuid
public unsafe partial struct IDXGIOutput1 : IDXGIOutput1.Interface, INativeGuid
{
public static ref readonly Guid IID_IDXGIOutput1
{
@@ -233,5 +233,19 @@ public unsafe partial struct IDXGIOutput1 : INativeGuid
{
return ((delegate* unmanaged[Stdcall]<IDXGIOutput1*, IUnknown*, IDXGIOutputDuplication**, int>)(lpVtbl[22]))((IDXGIOutput1*)Unsafe.AsPointer(ref this), pDevice, ppOutputDuplication);
}
public interface Interface : IDXGIOutput.Interface
{
[VtblIndex(19)]
HResult GetDisplayModeList1(Common.Format EnumFormat, uint Flags, uint* pNumModes, ModeDescription1* pDesc);
[VtblIndex(20)]
HResult FindClosestMatchingMode1(ModeDescription1* pModeToMatch, ModeDescription1* pClosestMatch, IUnknown* pConcernedDevice);
[VtblIndex(21)]
HResult GetDisplaySurfaceData1(IDXGIResource* pDestination);
[VtblIndex(22)]
HResult DuplicateOutput(IUnknown* pDevice, IDXGIOutputDuplication** ppOutputDuplication);
}
}