RosBE/RosBE-Windows/Tools/playwav.cpp
Daniel Reimer cd01d3e863 [ROSBE-WINDOWS]
Clean up some text files.
Update Copyright headers.
Update version numbers to 2.2.1.
Try to fix GCC changing console color to white again.
2020-05-30 11:55:52 +02: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 2020 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;
}