mirror of
https://github.com/amerkoleci/Vortice.Win32.git
synced 2026-01-14 08:06:02 +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("28211a43-7d89-476f-8181-2d6159b220ad")]
|
||||
[NativeTypeName("struct ID2D1Effect : ID2D1Properties")]
|
||||
[NativeInheritance("ID2D1Properties")]
|
||||
public unsafe partial struct ID2D1Effect : INativeGuid
|
||||
public unsafe partial struct ID2D1Effect : ID2D1Effect.Interface, INativeGuid
|
||||
{
|
||||
public static ref readonly Guid IID_ID2D1Effect
|
||||
{
|
||||
@@ -201,5 +201,22 @@ public unsafe partial struct ID2D1Effect : INativeGuid
|
||||
{
|
||||
((delegate* unmanaged[Stdcall]<ID2D1Effect*, ID2D1Image**, void>)(lpVtbl[18]))((ID2D1Effect*)Unsafe.AsPointer(ref this), outputImage);
|
||||
}
|
||||
public interface Interface : ID2D1Properties.Interface
|
||||
{
|
||||
[VtblIndex(14)]
|
||||
void SetInput(uint index, ID2D1Image* input, Bool32 invalidate);
|
||||
|
||||
[VtblIndex(15)]
|
||||
HResult SetInputCount(uint inputCount);
|
||||
|
||||
[VtblIndex(16)]
|
||||
void GetInput(uint index, ID2D1Image** input);
|
||||
|
||||
[VtblIndex(17)]
|
||||
uint GetInputCount();
|
||||
|
||||
[VtblIndex(18)]
|
||||
void GetOutput(ID2D1Image** outputImage);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user