1 /* 2 ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 ** Distributed under the terms of the Haiku License. 4 */ 5 6 7 #include <Beep.h> 8 #include <stdio.h> 9 10 11 status_t 12 system_beep(const char *eventName) 13 { 14 printf("beep event \"%s\" requested.\n", eventName); 15 // ToDo: ask media server to beep around 16 return B_ERROR; 17 } 18 19 20 status_t 21 beep() 22 { 23 return system_beep(NULL); 24 } 25 26 27 status_t 28 add_system_beep_event(const char *eventName, uint32 flags) 29 { 30 // ToDo: ask media server to add beep event 31 return B_ERROR; 32 } 33 34