mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
11 lines
210 B
C#
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();
|
|
}
|
|
}
|