mirror of
https://github.com/netbirdio/IronRDP.git
synced 2026-05-22 18:43:12 -07:00
47 lines
889 B
C#
47 lines
889 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 ClipboardWindowsFfiResultBoxClipboardMessageBoxIronRdpError
|
|
{
|
|
[StructLayout(LayoutKind.Explicit)]
|
|
private unsafe struct InnerUnion
|
|
{
|
|
[FieldOffset(0)]
|
|
internal ClipboardMessage* ok;
|
|
[FieldOffset(0)]
|
|
internal IronRdpError* err;
|
|
}
|
|
|
|
private InnerUnion _inner;
|
|
|
|
[MarshalAs(UnmanagedType.U1)]
|
|
public bool isOk;
|
|
|
|
public unsafe ClipboardMessage* Ok
|
|
{
|
|
get
|
|
{
|
|
return _inner.ok;
|
|
}
|
|
}
|
|
|
|
public unsafe IronRdpError* Err
|
|
{
|
|
get
|
|
{
|
|
return _inner.err;
|
|
}
|
|
}
|
|
}
|