Xdg.Directories/src/Xdg.Directories.FFI/Other.cs
Sam Therapy 5dbc9eb80c
More code cleanup idk
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2023-10-25 15:55:57 +02:00

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