I am trying to create thread in native C++, but it results in an error. I am trying to do it this way:
CreateThread(NULL,myfunction,NULL,0,NULL);
It shows wrong arguments error and I don't know what is wrong with it.
I am trying to create thread in native C++, but it results in an error. I am trying to do it this way:
CreateThread(NULL,myfunction,NULL,0,NULL);
It shows wrong arguments error and I don't know what is wrong with it.
Copyright © 2021 Jogjafile Inc.
I think, it's really not necessary use unusual functions like this. Try to use std libraries.