How to make a program which beeps every 1 second in ATL.
I've tried to made a new ATL project (Service EXE) and in this method :
ProjectNameModule::ServiceMain(...){
Beep(1000,50);
//...
}
I've included this line
Beep(1000,50);
But running this, wouldn't give the expected result.
Any brilliant idea, please?