Update bindings to metadata 64.0.22-preview, bump version to 2.3.0

This commit is contained in:
Amer Koleci
2025-10-03 15:58:24 +02:00
parent 6480e93159
commit 9b291458d8
639 changed files with 10787 additions and 2557 deletions

View File

@@ -0,0 +1,43 @@
// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
namespace Win32.Graphics.Direct3D;
/// <include file='../Direct3D.xml' path='doc/member[@name="ID3DInclude"]/*' />
/// <unmanaged>ID3DInclude</unmanaged>
public unsafe partial struct ID3DInclude : ID3DInclude.Interface
{
public void** lpVtbl;
/// <include file='../Direct3D.xml' path='doc/member[@name="ID3DInclude::Open"]/*' />
[MethodImpl(MethodImplOptions.AggressiveInlining)]
[VtblIndex(0)]
public HResult Open(IncludeType IncludeType, byte* pFileName, void* pParentData, void** ppData, uint* pBytes)
{
return ((delegate* unmanaged[MemberFunction]<ID3DInclude*, IncludeType, byte*, void*, void**, uint*, int>)(lpVtbl[0]))((ID3DInclude*)Unsafe.AsPointer(ref this), IncludeType, pFileName, pParentData, ppData, pBytes);
}
/// <include file='../Direct3D.xml' path='doc/member[@name="ID3DInclude::Close"]/*' />
[MethodImpl(MethodImplOptions.AggressiveInlining)]
[VtblIndex(1)]
public HResult Close(void* pData)
{
return ((delegate* unmanaged[MemberFunction]<ID3DInclude*, void*, int>)(lpVtbl[1]))((ID3DInclude*)Unsafe.AsPointer(ref this), pData);
}
public interface Interface
{
[VtblIndex(0)]
HResult Open(IncludeType IncludeType, byte* pFileName, void* pParentData, void** ppData, uint* pBytes);
[VtblIndex(1)]
HResult Close(void* pData);
}
}