It puts the application to a halt for the specified number of milliseconds.
void Sleep( DWORD dwMilliseconds )
none
EX1
int Sleep_ex1() { out_str("Before Sleep"); Sleep(1000); // sleep for one second out_str("After Sleep"); return 1; }
origin.h