2
0
mirror of https://github.com/constantinDev/hacktoolv2 synced 2025-08-30 06:57:40 +00:00
This commit is contained in:
WOOOMY-lol 2020-07-30 18:57:46 +02:00
parent 2be84a5a10
commit 81194fa9f8
3 changed files with 9 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,9 @@
#include <Windows.h>
#include <mmsystem.h>
#pragma comment(lib, "Winmm.lib")
int main() {
while (1) PlaySound(TEXT("./etc/audio.wav"), NULL, SND_FILENAME);
return 0;
}