Negat1ve Posted July 20, 2009 Posted July 20, 2009 How can i pause execution in C++ ? like in AutoIT Sleep()
jvanegmond Posted July 20, 2009 Posted July 20, 2009 You have a sleep function in c++ in <time.h> - Sleep(timeInMillisecs) (win) req : <windows.h> - sleep(timeInSecs) (unix) - usleep(timeInMillisecs) (unix) ( found googling for "C++ sleep" ) github.com/jvanegmond
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now