2020-09-30 17:12:29 +02:00

51 lines
557 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1991 Microsoft Corporation
Copyright (c) 1992 Silicon Graphics, Inc.
Module Name:
s3beep.c
Abstract:
This module implements the HAL speaker "beep" routines for
an Indigo system.
Author:
Environment:
Kernel mode
Revision History:
--*/
#include <nt.h>
BOOLEAN
HalMakeBeep(
IN ULONG Frequency
)
/*++
Routine Description:
Since audio has to go through the DSP, this function won't be
implemented.
Arguments:
Return Value:
Always FALSE for unsuccessful.
--*/
{
return(FALSE);
}