Xdg.Directories/src/Xdg.Directories.FFI/Other.cs

12 lines
263 B
C#

#if NET7_0_OR_GREATER
using System.Runtime.InteropServices;
namespace Xdg.Directories.FFI;
internal static partial class Exports
{
[UnmanagedCallersOnly(EntryPoint = "xdg_user_home")]
public static IntPtr UserHome() => StringToPtr(Other.Home);
}
#endif