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

@@ -60,7 +60,7 @@ public static unsafe class Program
private static void TestDxc()
{
using ComPtr<IDxcCompiler3> compiler = default;
DxcCreateInstance(CLSID_DxcCompiler, __uuidof<IDxcCompiler3>(), compiler.GetVoidAddressOf());
DxcCreateInstance(CLSID_DxcCompiler, __uuidof<IDxcCompiler3>(), (void**)compiler.GetAddressOf());
}
private static void TestWic()
@@ -98,11 +98,11 @@ public static unsafe class Program
ThrowIfFailed(D2D1CreateFactory(FactoryType.MultiThreaded,
__uuidof<ID2D1Factory2>(),
default,
d2d1Factory2.GetVoidAddressOf()));
(void**)d2d1Factory2.GetAddressOf()));
using ComPtr<IDWriteFactory> dwriteFactory = default;
ThrowIfFailed(
DWriteCreateFactory(DWriteFactoryType.Shared, __uuidof<IDWriteFactory>(), dwriteFactory.GetVoidAddressOf()));
DWriteCreateFactory(DWriteFactoryType.Shared, __uuidof<IDWriteFactory>(), (void**)dwriteFactory.GetAddressOf()));
using ComPtr<IDWriteTextFormat> textFormat =
dwriteFactory.Get()->CreateTextFormat(
@@ -216,7 +216,7 @@ public static unsafe class Program
(IUnknown*)adapter.Get(),
FeatureLevel.Level_11_0,
__uuidof<ID3D12Device>(),
device.GetVoidAddressOf()
(void**)device.GetAddressOf()
);
ThrowIfFailed(hr);