1 /* 2 * Copyright 2007-2014 Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _BEEP_H 6 #define _BEEP_H 7 8 9 #include <BeBuild.h> 10 #include <SupportDefs.h> 11 12 13 #ifdef __cplusplus 14 // These functions are only exported for C++ 15 16 status_t beep(); 17 status_t system_beep(const char* eventName); 18 status_t add_system_beep_event(const char* eventName, uint32 flags = 0); 19 20 #endif // __cplusplus 21 22 #endif // _BEEP_H 23