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.Direct3D11;
[Guid("9b32f9ad-bdcc-40a6-a39d-d5c865845720")]
[NativeTypeName("struct ID3D11CryptoSession : ID3D11DeviceChild")]
[NativeInheritance("ID3D11DeviceChild")]
public unsafe partial struct ID3D11CryptoSession : INativeGuid
public unsafe partial struct ID3D11CryptoSession : ID3D11CryptoSession.Interface, INativeGuid
{
public static ref readonly Guid IID_ID3D11CryptoSession
{
@@ -145,5 +145,22 @@ public unsafe partial struct ID3D11CryptoSession : INativeGuid
{
((delegate* unmanaged[Stdcall]<ID3D11CryptoSession*, Handle*, void>)(lpVtbl[11]))((ID3D11CryptoSession*)Unsafe.AsPointer(ref this), pCryptoSessionHandle);
}
public interface Interface : ID3D11DeviceChild.Interface
{
[VtblIndex(7)]
void GetCryptoType(Guid* pCryptoType);
[VtblIndex(8)]
void GetDecoderProfile(Guid* pDecoderProfile);
[VtblIndex(9)]
HResult GetCertificateSize(uint* pCertificateSize);
[VtblIndex(10)]
HResult GetCertificate(uint CertificateSize, byte* pCertificate);
[VtblIndex(11)]
void GetCryptoSessionHandle(Handle* pCryptoSessionHandle);
}
}