// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Runtime.InteropServices; namespace osu.Framework.Platform.MacOS.Native { internal static class Selector { [DllImport(Cocoa.LIB_OBJ_C, EntryPoint = "sel_registerName")] public static extern IntPtr Get(string name); } }