1 /****************************************************************************** 2 / 3 / File: Beep.h 4 / 5 / Description: System beep function. 6 / 7 / Copyright 1993-98, Be Incorporated 8 / 9 ******************************************************************************/ 10 11 #ifndef _BEEP_H 12 #define _BEEP_H 13 14 #include <BeBuild.h> 15 #include <SupportDefs.h> 16 17 18 _IMPEXP_BE status_t beep(); 19 _IMPEXP_BE status_t system_beep(const char * event_name); 20 21 #if defined(__cplusplus) 22 #define _BEEP_FLAGS = 0 23 #else 24 #define _BEEP_FLAGS 25 #endif 26 _IMPEXP_BE status_t add_system_beep_event(const char * event_name, uint32 flags _BEEP_FLAGS); 27 28 29 #endif /* _BEEP_H */ 30