mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-08-04 15:18:17 +00:00
21 lines
582 B
C#
21 lines
582 B
C#
// <auto-generated/> by Diplomat
|
|
|
|
#pragma warning disable 0105
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
using Devolutions.IronRdp.Diplomat;
|
|
#pragma warning restore 0105
|
|
|
|
namespace Devolutions.IronRdp.Raw;
|
|
|
|
#nullable enable
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public partial struct StaticChannelSet
|
|
{
|
|
private const string NativeLib = "DevolutionsIronRdp";
|
|
|
|
[DllImport(NativeLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "StaticChannelSet_destroy", ExactSpelling = true)]
|
|
public static unsafe extern void Destroy(StaticChannelSet* self);
|
|
}
|