Original Post
Using c++ and windows is there a way to create a non blocking function eg I want to be able to call this function without it blocking. Sort of like a timer but i dont want to have to create a new thread or create a win32 timer or something Thanks
void NonBlocking(void)
{
Sleep(5000);
cout << "Waiting done..." << "\n";
}