mirror of
https://github.com/netbirdio/IronRDP.git
synced 2026-05-22 18:43:12 -07:00
25 lines
724 B
C#
25 lines
724 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 Log
|
|
{
|
|
private const string NativeLib = "DevolutionsIronRdp";
|
|
|
|
[DllImport(NativeLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Log_init_with_env", ExactSpelling = true)]
|
|
public static unsafe extern void InitWithEnv();
|
|
|
|
[DllImport(NativeLib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Log_destroy", ExactSpelling = true)]
|
|
public static unsafe extern void Destroy(Log* self);
|
|
}
|