087882c26e
feel free to change that ;-) * Cleaned up existing headers. * Coding style guide update to BBufferIO (renamed m_* members to f*). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19972 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
419 B
C
23 lines
419 B
C
/*
|
|
* Copyright 2007, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BEEP_H
|
|
#define _BEEP_H
|
|
|
|
|
|
#include <BeBuild.h>
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
// These functions are only exported for C++
|
|
|
|
status_t beep();
|
|
status_t system_beep(const char* eventName);
|
|
status_t add_system_beep_event(const char* eventName, uint32 flags = 0);
|
|
|
|
#endif
|
|
|
|
#endif // _BEEP_H
|