CPF/CPF.Mac/Mac/AppKit/AppKitFramework.cs
2023-11-21 23:05:03 +08:00

11 lines
210 B
C#

using System.Runtime.InteropServices;
namespace CPF.Mac.AppKit
{
public class AppKitFramework
{
[DllImport("/System/Library/Frameworks/AppKit.framework/AppKit")]
public static extern void NSBeep();
}
}