30 lines
595 B
C
30 lines
595 B
C
/****************************** Module Header ******************************\
|
|
* Module Name: msgbeep.c
|
|
|
|
* Copyright (c) 1985 - 1999, Microsoft Corporation
|
|
|
|
* This module contains the xxxMessageBox API and related functions.
|
|
|
|
* History:
|
|
* 6-26-91 NigelT Created it with some wood and a few nails
|
|
* 7 May 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);
|
|
}
|