I'm looking for a MessageBeep replacement on the OS X. It seems that the proper function to call would be NSBeep but it is not supported by XE2 RTL.
How do I call NSBeep from Delphi application?
I'm looking for a MessageBeep replacement on the OS X. It seems that the proper function to call would be NSBeep but it is not supported by XE2 RTL.
How do I call NSBeep from Delphi application?
It's just a plain C function:
procedure NSBeep; cdecl;
external '/System/Library/Frameworks/AppKit.framework/AppKit' name '_NSBeep';
© 2022 - 2024 — McMap. All rights reserved.
Beep
instead ? However I have no idea what they mean with the note On MAC OS the Beep routine has limited functionality, does it mean it does less than beep :-) ? – Swinson