2007-01-26 19:36:29 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2007, Haiku, Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2002-10-23 17:54:44 +04:00
|
|
|
#ifndef _BEEP_H
|
|
|
|
#define _BEEP_H
|
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
|
2002-10-23 17:54:44 +04:00
|
|
|
#include <BeBuild.h>
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
// These functions are only exported for C++
|
2002-10-23 17:54:44 +04:00
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
status_t beep();
|
|
|
|
status_t system_beep(const char* eventName);
|
|
|
|
status_t add_system_beep_event(const char* eventName, uint32 flags = 0);
|
2002-10-23 17:54:44 +04:00
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
#endif
|
2002-10-23 17:54:44 +04:00
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
#endif // _BEEP_H
|