RosBE/RosBE-Windows/Tools/playwav.cpp
Daniel Reimer 6757760dc1 Add a own built wav play tool made in cpp for the Batch RosBE and remove the PowerBasic one I added yesterday.
PRO: We can build it ourselves and its silent in the console.
CONS: None.

svn path=/trunk/tools/RosBE/; revision=1193
2010-04-01 15:11:05 +00:00

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;
}