- New ARM HAL after 2 nights in the company of a madman.
[reactos.git] / reactos / hal / halarm / generic / beep.c
1 /*
2 * PROJECT: ReactOS HAL
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * FILE: hal/halarm/generic/beep.c
5 * PURPOSE: Speaker support (beeping)
6 * PROGRAMMERS: ReactOS Portable Systems Group
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include <hal.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 /* FUNCTIONS *****************************************************************/
16
17 /*
18 * @implemented
19 */
20 BOOLEAN
21 NTAPI
22 HalMakeBeep(IN ULONG Frequency)
23 {
24 UNIMPLEMENTED;
25 return FALSE;
26 }