You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
829 B
28 lines
829 B
/****************************** Module Header ******************************\
|
|
* Module Name: msgbeep.c
|
|
*
|
|
* Copyright (c) 1985 - 1999, Microsoft Corporation
|
|
*
|
|
* This module contains ConsolePlaySound.
|
|
*
|
|
* History:
|
|
* 06-26-91 NigelT Created it with some wood and a few nails.
|
|
* 05-07-92 SteveDav Getting closer to the real thing.
|
|
\***************************************************************************/
|
|
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
#include "ntuser.h"
|
|
|
|
/***************************************************************************\
|
|
*
|
|
* ConsolePlaySound
|
|
*
|
|
* Play the Open sound for console applications.
|
|
*
|
|
\***************************************************************************/
|
|
VOID ConsolePlaySound(
|
|
VOID)
|
|
{
|
|
NtUserCallOneParam(USER_SOUND_OPEN, SFI_PLAYEVENTSOUND);
|
|
}
|