mirror of
https://github.com/reactos/RosBE.git
synced 2024-11-27 05:10:27 +00:00
6757760dc1
PRO: We can build it ourselves and its silent in the console. CONS: None. svn path=/trunk/tools/RosBE/; revision=1193
19 lines
439 B
C++
19 lines
439 B
C++
/*
|
|
* PROJECT: RosBE - ReactOS Build Environment for Windows.
|
|
* LICENSE: GNU General Public License v2. (see LICENSE.txt)
|
|
* FILE: Tools/playwav.c
|
|
* PURPOSE: WAVE Player
|
|
* COPYRIGHT: Copyright 2010 Daniel Reimer <reimer.daniel@freenet.de>
|
|
*
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include <tchar.h>
|
|
#include <mmsystem.h>
|
|
|
|
int _tmain(int argc, TCHAR* argv[])
|
|
{
|
|
PlaySound(argv[1],NULL,SND_FILENAME|SND_SYNC);
|
|
return 0;
|
|
}
|