Files
IronRDP/ffi/dotnet/Devolutions.IronRdp/Generated/RawConnectionActivationStateCapabilitiesExchange.cs

28 lines
1.2 KiB
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 ConnectionActivationStateCapabilitiesExchange
{
private const string NativeLib = "DevolutionsIronRdp";
[DllImport(NativeLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ConnectionActivationStateCapabilitiesExchange_get_io_channel_id", ExactSpelling = true)]
public static unsafe extern ushort GetIoChannelId(ConnectionActivationStateCapabilitiesExchange* self);
[DllImport(NativeLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ConnectionActivationStateCapabilitiesExchange_get_user_channel_id", ExactSpelling = true)]
public static unsafe extern ushort GetUserChannelId(ConnectionActivationStateCapabilitiesExchange* self);
[DllImport(NativeLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "ConnectionActivationStateCapabilitiesExchange_destroy", ExactSpelling = true)]
public static unsafe extern void Destroy(ConnectionActivationStateCapabilitiesExchange* self);
}