mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
27 lines
576 B
C
27 lines
576 B
C
/*
|
|
* PROJECT: ReactOS HAL
|
|
* LICENSE: BSD - See COPYING.ARM in the top level directory
|
|
* FILE: hal/halarm/generic/beep.c
|
|
* PURPOSE: Speaker support (beeping)
|
|
* PROGRAMMERS: ReactOS Portable Systems Group
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <hal.h>
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
BOOLEAN
|
|
NTAPI
|
|
HalMakeBeep(IN ULONG Frequency)
|
|
{
|
|
UNIMPLEMENTED;
|
|
return FALSE;
|
|
}
|