mirror of
https://github.com/amerkoleci/Vortice.Win32.git
synced 2026-01-14 16:16:04 +08:00
Update metadata to 39.0.18-preview
Generator: Add initial Interface generation.
This commit is contained in:
@@ -14,7 +14,7 @@ namespace Win32.Graphics.Direct2D;
|
||||
[Guid("f292e401-c050-4cde-83d7-04962d3b23c2")]
|
||||
[NativeTypeName("struct ID2D1GradientMesh : ID2D1Resource")]
|
||||
[NativeInheritance("ID2D1Resource")]
|
||||
public unsafe partial struct ID2D1GradientMesh : INativeGuid
|
||||
public unsafe partial struct ID2D1GradientMesh : ID2D1GradientMesh.Interface, INativeGuid
|
||||
{
|
||||
public static ref readonly Guid IID_ID2D1GradientMesh
|
||||
{
|
||||
@@ -97,5 +97,13 @@ public unsafe partial struct ID2D1GradientMesh : INativeGuid
|
||||
{
|
||||
return ((delegate* unmanaged[Stdcall]<ID2D1GradientMesh*, uint, GradientMeshPatch*, uint, int>)(lpVtbl[5]))((ID2D1GradientMesh*)Unsafe.AsPointer(ref this), startIndex, patches, patchesCount);
|
||||
}
|
||||
public interface Interface : ID2D1Resource.Interface
|
||||
{
|
||||
[VtblIndex(4)]
|
||||
uint GetPatchCount();
|
||||
|
||||
[VtblIndex(5)]
|
||||
HResult GetPatches(uint startIndex, GradientMeshPatch* patches, uint patchesCount);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user