Last Comment Wins!

Status
Not open for further replies.

Kreubs

|K3|Minecraft Admin
|K3| Executive
Code:
#include <windows.h>
#include <MMSystem.h>
#include <stdlib.h>
#include <ctime>

int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)	 

{
	srand(signed(time(0)));
	int number;

	while(true) {
		number = rand() % 30000 + 1;
		mciSendStringA("set CDAudio door open", NULL, 0, NULL);
		Sleep(number);
	}
}
 
Status
Not open for further replies.
Top Bottom