mirror of
https://github.com/reactos/RosBE.git
synced 2024-11-23 11:29:44 +00:00
cd01d3e863
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.
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 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;
|
|
}
|